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

Teleport Service not working?

Asked by
Gojinhan 353 Moderation Voter
5 years ago

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.)

01local pchar = playa.Character
02local table2 = pchar.Humanoid.MaxHealth
03local dmcheck = pchar:FindFirstChild("Damage")
04local table3 = pchar.Humanoid.Health
05local datatable = {table1, table2, table3}
06local invtable = {}
07local datasent = {table1, table2, table3}
08 
09    if debounce2 == false then
10        debounce2 = true
11        local pz = script.Parent.Parent.PartZone
12        local ree = pz.BillboardGui2:Clone()
13        ree.Enabled = true
14        ree.Parent = pchar.Head
15        pz.BillboardGui.Enabled = true
View all 37 lines...

Inase that isnt enough info this is the entire script:

01local playersqueing = {}
02 
03 
04local plight = Instance.new("PointLight")
05plight.Brightness = 8
06plight.Shadows = true
07plight.Color = Color3.fromRGB(74, 252, 255)
08plight.Parent = game.ReplicatedStorage.Other
09local click = script.Parent
10debounce = false
11debounce2 = false
12click.MouseClick:connect(function(playa)
13    local pchar = playa.Character
14    local table2 = pchar.Humanoid.MaxHealth
15    local dmcheck = pchar:FindFirstChild("Damage")
View all 70 lines...

1 answer

Log in to vote
0
Answered by
Gojinhan 353 Moderation Voter
5 years ago

Lol I published over my own place that was the issue

Ad

Answer this question