Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why does this only work on studio but not client?

Asked by 9 years ago

Someone told me that its a good idea to put a waitforchild thing, so i put it in then i didnt work or play in client(roblox launcher thingy)

I'm still unsure of how to work things on clients tips?

01local script = script
02local DebrisService = game:GetService('Debris')
03local Sound1 = script:WaitForChild("Sound1")
04local Sound2 = script:WaitForChild("Sound2")
05local Sound3 = script:WaitForChild("Sound3")
06while true do
07wait(2)
08Alert = script.Alert:Clone()
09Alert.Parent = game.Players.LocalPlayer.PlayerGui
10DebrisService:AddItem(Alert, 15)
11Sound1:Play()
12wait(21)
13Sound2:Play()
14wait(22)
15Sound3:Play()
16wait(60)
17Message = script.Message:Clone()
18Message.Parent = game.Players.LocalPlayer.PlayerGui
19DebrisService:AddItem(Message, 101)
20end
0
Please format your code correctly. It helps with reading it, even if it is a short code. If you don't know how, go ahead and search code formatting. It will help you later. yelsew 205 — 9y

Answer this question