I’m making this game and I need a tool what you can use so you can pull players to you from where you are standing at. Something like scorpions spear from mortal combat and I’m wondering how I’m suppose to make that can you guys help?
Just change the players' positions in a regular Script
.
local tool = script.Parent tool.Activated:Connect(function() -- when player clicks while tool is equipped for _, player in pairs(game.Players:GetPlayers()) do -- loops through each player in the server player.Character.HumanoidRootPart.CFrame = tool.Parent.Parent.Character.HumanoidRootPart.CFrame -- changes players' CFrames to the exact CFrame of the player holding the tool end end)