this would be a piece of cake if tis script was supposed to be inserted into my player but this script is for an npc, this is not a request
You can access a player's Torso from a server script using this code:
For example, this will TP everyone to the absolute middle of the map.
1 | for i, v in pairs (game.Players:GetPlayers()) do |
2 | v.Character.Torso.CFrame = CFrame.new(Vector 3. new( 0 , 0 , 0 )) |
3 | end |
"v" basically represents the players, and "in pairs" means it's looping through a "table" of players. Pretend it's looping through every player in the leaderboard.
You can also access the torso with a touched script using hit.Parent.
1 | script.Parent.Touched:connect( function (hit) |
2 | hit.Parent.Torso = code here |
3 | end |
Hope this helps!
P.S. You can use an if/then statement in the for loop, so you can target certain players.