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
4 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
4 years ago
local TeleportService = game:GetService("TeleportService") 
local gameID = 3449790483

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

script.Parent.MouseButton1Down:connect(Click)

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

0
Thanks! iHavoc101 127 — 4y
Ad

Answer this question