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

How to Teleport Player Back to Place?

Asked by
TofuBytes 500 Moderation Voter
11 years ago

I tried to teleport the player back to the other place, but it won't work. This is a local script located in the StarterGUI. Any help?

01while true do
02print("Sound is Playing")
03script.Parent.Credit:Play()
04wait(100)
05script.Parent.Credit.Volume = 0.4
06wait(0.5)
07script.Parent.Credit.Volume = 0.3
08wait(0.5)
09script.Parent.Credit.Volume = 0.2
10wait(0.5)
11script.Parent.Credit.Volume = 0.1
12wait(0.5)
13script.Parent.Credit.Volume = 0
14wait(5)
15print("Did it Send You Back?")
16game:Service("TeleportService"):Teleport(42860954)
17wait(10)
18script.Parent.Credit:Destroy()
19wait(10)
20end

1 answer

Log in to vote
1
Answered by
drahsid5 250 Moderation Voter
11 years ago

May I ask why this is in a loop?

01--I'll assume this is in a GUI in starter GUI.
02--Put this in a local script
03local Player = game.Players.LocalPlayer
04while true do
05print("Sound is Playing")
06script.Parent.Credit:Play()
07wait(100)
08for i=1,5 do --Use a For Do loop, to shorten the script, and save time while scripting.
09script.Parent.Credit.Volume = (script.Parent.Credit.Volume - 0.1)
10wait(0.5)
11end
12game:Service("TeleportService"):Teleport(42860954, Player) --It has to know WHO to teleport.
13wait(10)
14script.Parent.Credit:Destroy()
15wait(10)
16end
0
Thank you! TofuBytes 500 — 11y
0
No problem. drahsid5 250 — 11y
Ad

Answer this question