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

Why doesn't this text button teleporter work when I click it?

Asked by
iHavoc101 127
5 years ago

I am making a between game teleporter, but when I click it, it doesn't work, help please?

`local TeleportService = game:GetService("TeleportService") local gameID = 3449790483

function Click(mouse) local player = game.Players:GetPlayerFromCharacter(click.Parent) if player then TeleportService:Teleport(gameID, player) end end

script.Parent.MouseButton1Down:connect(Click)`

1 answer

Log in to vote
0
Answered by
noammao 294 Moderation Voter
5 years ago
01local TeleportService = game:GetService("TeleportService")
02local gameID = 3449790483
03 
04function Click(mouse)
05local player = game.Players:GetPlayerFromCharacter(mouse.Parent)
06    if player then
07    TeleportService:Teleport(gameID, player)
08    end
09end
10 
11script.Parent.MouseButton1Down:connect(Click)

You accedentally wrote GetPlayerFromCharacter(click.Parent) instead of GetPlayerFromCharacter(mouse.Parent).

0
Thanks! iHavoc101 127 — 5y
Ad

Answer this question