Roblox Teleport All to me script
This may not be working for some games but it is useful since in your client side you would at least see the player being teleported to you at a split seconds, and if you edited it a bit like adding a while loop, you may teleport people to you forever and you could kill them anytime with your melee or guns.
Script:
target = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
for i, player in ipairs(game.Players:GetChildren()) do
player.Character.HumanoidRootPart.CFrame = target
end
doesn't work
ReplyDeleteDOES
Deletelol
ReplyDeleteit should be this
ReplyDeletetarget = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
for i, player in inpairs(game.Players:GetChildren()) do
player.Character.HumanoidRootPart.CFrame = target
end