-
What do you want to achieve? If a player clickes on a part they get teleported while being anchored
-
What is the issue?
this does work but after the player resets/respawns it not effect the character at all anymore. -
What solutions have you tried so far? all the different way of using the Player.Character Line i could find
Place the script in StarterPlayerScripts.
Even when putting it in StarterPlayerScripts nothing happens at all.
Try do this instead:
game.Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Character)
-- code here
end)
end)
Every time the player’s character is added it will run the code.
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.