Teleport Service not working?
Hello, I have a door with a click detector that when clicked puts a light around the player and a billboard gui on their head saying "ready" and another billboard gui on the door counting down from the number 15.
Problem is, this script has worked for a week or two now. I added the whole billboard thing last night and it's not working anymore. It makes a reserved server but instead of going to another place in my Universe, it teleports straight back to the same game just in a private server. For the record I checked the ID and it matches up perfectly with the place Im trying to go to. I don't think I changed anything essential but I'm not sure.
Here's the excerpt from the clickdetector script.
(also prob worth mentioning, no errors from what I can see.)
01 | local pchar = playa.Character |
02 | local table 2 = pchar.Humanoid.MaxHealth |
03 | local dmcheck = pchar:FindFirstChild( "Damage" ) |
04 | local table 3 = pchar.Humanoid.Health |
05 | local datatable = { table 1 , table 2 , table 3 } |
07 | local datasent = { table 1 , table 2 , table 3 } |
09 | if debounce 2 = = false then |
11 | local pz = script.Parent.Parent.PartZone |
12 | local ree = pz.BillboardGui 2 :Clone() |
14 | ree.Parent = pchar.Head |
15 | pz.BillboardGui.Enabled = true |
16 | local servercount = 15 |
17 | while servercount > = 1 do |
18 | servercount = servercount - 1 |
19 | pz.BillboardGui.Name 1. Text = servercount |
23 | local tps = game:GetService( "TeleportService" ) |
24 | local ps = tps:ReserveServer( 4456640169 ) |
25 | tps.CustomizedTeleportUI = true |
26 | local ls = game.ReplicatedStorage.GUI.GoToMedusa:Clone() |
27 | ls.Parent = playa.PlayerGui |
28 | local ff = Instance.new( "ForceField" ) |
29 | ff:Clone().Parent = pchar |
31 | tps:TeleportToPrivateServer( 4456640169 , ps, playersqueing, nil , datasent, playa.PlayerGui.GoToMedusa) |
Inase that isnt enough info this is the entire script:
01 | local playersqueing = { } |
04 | local plight = Instance.new( "PointLight" ) |
07 | plight.Color = Color 3. fromRGB( 74 , 252 , 255 ) |
08 | plight.Parent = game.ReplicatedStorage.Other |
09 | local click = script.Parent |
12 | click.MouseClick:connect( function (playa) |
13 | local pchar = playa.Character |
14 | local table 2 = pchar.Humanoid.MaxHealth |
15 | local dmcheck = pchar:FindFirstChild( "Damage" ) |
17 | table 1 = dmcheck.Value |
22 | local table 3 = pchar.Humanoid.Health |
23 | local datatable = { table 1 , table 2 , table 3 } |
25 | local datasent = { table 1 , table 2 , table 3 } |
26 | if debounce = = false then |
28 | local lightind = plight:Clone() |
29 | lightind.Parent = pchar.Head |
30 | table.insert(playersqueing, playa) |
31 | datasent [ 1 ] = playa.Character.Humanoid.Health |
32 | for i,v in pairs (playersqueing) do |
42 | if debounce 2 = = false then |
44 | local pz = script.Parent.Parent.PartZone |
45 | local ree = pz.BillboardGui 2 :Clone() |
47 | ree.Parent = pchar.Head |
48 | pz.BillboardGui.Enabled = true |
49 | local servercount = 15 |
50 | while servercount > = 1 do |
51 | servercount = servercount - 1 |
52 | pz.BillboardGui.Name 1. Text = servercount |
56 | local tps = game:GetService( "TeleportService" ) |
57 | local ps = tps:ReserveServer( 4456640169 ) |
58 | tps.CustomizedTeleportUI = true |
59 | local ls = game.ReplicatedStorage.GUI.GoToMedusa:Clone() |
60 | ls.Parent = playa.PlayerGui |
61 | local ff = Instance.new( "ForceField" ) |
62 | ff:Clone().Parent = pchar |
64 | tps:TeleportToPrivateServer( 4456640169 , ps, playersqueing, nil , datasent, playa.PlayerGui.GoToMedusa) |