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?
01 | while true do |
02 | print ( "Sound is Playing" ) |
03 | script.Parent.Credit:Play() |
04 | wait( 100 ) |
05 | script.Parent.Credit.Volume = 0.4 |
06 | wait( 0.5 ) |
07 | script.Parent.Credit.Volume = 0.3 |
08 | wait( 0.5 ) |
09 | script.Parent.Credit.Volume = 0.2 |
10 | wait( 0.5 ) |
11 | script.Parent.Credit.Volume = 0.1 |
12 | wait( 0.5 ) |
13 | script.Parent.Credit.Volume = 0 |
14 | wait( 5 ) |
15 | print ( "Did it Send You Back?" ) |
16 | game:Service( "TeleportService" ):Teleport( 42860954 ) |
17 | wait( 10 ) |
18 | script.Parent.Credit:Destroy() |
19 | wait( 10 ) |
20 | end |
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 |
03 | local Player = game.Players.LocalPlayer |
04 | while true do |
05 | print ( "Sound is Playing" ) |
06 | script.Parent.Credit:Play() |
07 | wait( 100 ) |
08 | for i = 1 , 5 do --Use a For Do loop, to shorten the script, and save time while scripting. |
09 | script.Parent.Credit.Volume = (script.Parent.Credit.Volume - 0.1 ) |
10 | wait( 0.5 ) |
11 | end |
12 | game:Service( "TeleportService" ):Teleport( 42860954 , Player) --It has to know WHO to teleport. |
13 | wait( 10 ) |
14 | script.Parent.Credit:Destroy() |
15 | wait( 10 ) |
16 | end |