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

Why won't my teleport GUI work properly?

Asked by
JipSea 23
4 years ago

I have a game where you can click different checkpoints in a GUI to teleport throughout the map, However; it keeps teleporting players on top of roofs, etc.

I have read about CFRAME's but cannot get it to work properly.

Please help!

1local self = script.Parent;
2    local Player = game.Players.LocalPlayer;
3    local Character = Player.Character or Player.CharacterAdded:wait();
4 
5    self.MouseButton1Down:connect(function()
6        Character:MoveTo(Vector3.new(42.913, 37.644, -119.341));
7    end)

Thank You.

2 answers

Log in to vote
0
Answered by 4 years ago

You must use a local script. Not sure why but the first answer make me feel like your using a serverscript. Also the local script must be inside the textbutton GUI.

1script.Parent.MouseButton1Click:Connect(function() -- When MouseButton1 (L Mouse) clicked then function below code
2    local plr = game.Players.LocalPlayer -- Getting LocalPlayer (The client which is the player probably you when testing)
3    local char = plr.Character -- Getting plr Character
4    char:FindFirstChild("HumanoidRootPart").CFrame = CFrame.new(0,0,0) -- Set your CFrame position
5end) -- Nihao I am chinese

Comment if you dont understand.

Ad
Log in to vote
-1
Answered by 4 years ago

Make sure its a script, also you don't have any touch intrest in your script.

Put this at the very top of the script, and the second line at the very bottom

1function onTouched(hit)
2script.Parent.Touched:Connect(onTouched)
0
Also might wanna make a few changes when you do make this a script, like not reffering to localplayer. ifreakinlostmyacount 52 — 4y

Answer this question