Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Needs to be in a local script--
- --Mousebutton1 picks them up--
- --Mousebutton2 removes limbs--
- local player = game:GetService('Players').LocalPlayer
- local char = player.Character
- local mouse = player:GetMouse()
- mouse.Button1Down:connect(function (clickdown)
- if mouse.Target.Parent:FindFirstChild('Humanoid') then
- local rok = Instance.new('BodyPosition')
- rok.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
- rok.P = 9999
- rok.Parent = mouse.Target.Parent.Torso
- while true do
- rok.Position = Vector3.new(char.Torso.Position.X,15,char.Torso.Position.Z)
- wait(.1)
- end
- end
- end)
- mouse.Button2Down:connect(function (clickdown)
- if mouse.Target.Parent:FindFirstChild('Humanoid') then
- mouse.Target:Destroy()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement