roblox wait for a value code example
Example 1: roblox wait for character
player.CharacterAppearanceLoaded:Connect(function(character))
Example 2: Roblox Script wait
-- To wait in Roblox Lua
wait(0)
-- Replace 0 with the amount of seconds
-- If you wanted to wait for 1 Minute it would be
wait(60)