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

[Solved] How would I fix this teleport player gui??

Asked by 5 years ago
Edited 5 years ago
1place = CFrame.new(1,1,1)
2script.Parent.MouseButton1Down:connect(function()
3local humanoid = game.Players.LocalPlayer:FindFirstChild("Humanoid")
4if (humanoid ~= nil) then
5    humanoid.Torso.CFrame = place
6    end
7    end)

When you click the parent it teleports the player who clicked anybody know?? [The script above doesn't work]

2 answers

Log in to vote
0
Answered by 5 years ago

Instead of

1local humanoid = game.Players.LocalPlayer:FindFirstChild("Humanoid")
2if (humanoid ~= nil) then
3       humanoid.Torso.CFrame = place
4    end
5end)

type:

1local char = gme.Players.LocalPlayer.Character
2if char then
3    char.HumanoidRootPart.CFrame = place
4end
Ad
Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

You can't get the torso from the humanoid, but you can get it through the character like this:

R6:

1place = CFrame.new(1,1,1)
2script.Parent.MouseButton1Down:connect(function()
3    local player = game.Players.LocalPlayer
4    local char = player.CharacterAdded:wait()
5 
6    if (char~= nil) then
7        char.Torso.CFrame = place
8    end
9end)

R15:

1place = CFrame.new(1,1,1)
2script.Parent.MouseButton1Down:connect(function()
3    local player = game.Players.LocalPlayer
4    local char = player.CharacterAdded:wait()
5 
6    if (char~= nil) then
7        char.LowerTorso.CFrame = place
8    end
9end)
0
Thanks but I tried it and.. It din't work for some reason killerbrasko2002 33 — 5y
0
Errors? Trollapse 89 — 5y
0
Use the proper script for your game type Trollapse 89 — 5y

Answer this question