1 | place = CFrame.new( 1 , 1 , 1 ) |
2 | script.Parent.MouseButton 1 Down:connect( function () |
3 | local humanoid = game.Players.LocalPlayer:FindFirstChild( "Humanoid" ) |
4 | if (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]
Instead of
1 | local humanoid = game.Players.LocalPlayer:FindFirstChild( "Humanoid" ) |
2 | if (humanoid ~ = nil ) then |
3 | humanoid.Torso.CFrame = place |
4 | end |
5 | end ) |
type:
1 | local char = gme.Players.LocalPlayer.Character |
2 | if char then |
3 | char.HumanoidRootPart.CFrame = place |
4 | end |
You can't get the torso from the humanoid, but you can get it through the character like this:
R6:
1 | place = CFrame.new( 1 , 1 , 1 ) |
2 | script.Parent.MouseButton 1 Down: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 |
9 | end ) |
R15:
1 | place = CFrame.new( 1 , 1 , 1 ) |
2 | script.Parent.MouseButton 1 Down: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 |
9 | end ) |