Lasso:
script.Parent = game.Players.YOURUSERNAMEHERE.PlayerGui
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
mouse.Button1Down:connect(function()
if mouse.Target then
while workspace:findFirstChild((player.Name .. "Lasso"), true) ~= nil do workspace:findFirstChild((player.Name .. "Lasso"), true):remove() end
while workspace:findFirstChild((player.Name .. "LassoBody"), true) ~= nil do workspace:findFirstChild((player.Name .. "LassoBody"), true):remove() end
local lasso = Instance.new("SelectionPartLasso", Workspace)
lasso.Name = (player.Name .. "Lasso")
lasso.Humanoid = player.Character.Humanoid
lasso.Part = mouse.Target
local body = Instance.new("BodyPosition", mouse.Target)
body.Name = (player.Name .. "LassoBody")
body.D = 250000
body.maxForce = Vector3.new(500000, 500000, 500000) body.P = 500000
repeat wait() body.position = Vector3.new(player.Character.Torso.Position.X, player.Character.Torso.Position.Y, player.Character.Torso.Position.Z) until nil
end
end) |