Advertisement
Sheepz

Kidnap Script (ROBLOX SCRIPT)

Jan 29th, 2023 (edited)
2,474
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | Source Code | 1 0
  1. -- Credits: Sheepz/Sheep
  2. -- You will need to have a tool for it to work (Any tool is fine)
  3. -- Go near people and press Z.
  4.  
  5. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  6. if key == 'z' then
  7. local h = game.Players.LocalPlayer.Character.Humanoid:Clone()
  8. local plr = game.Players.LocalPlayer.Character
  9. local CF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  10. local lp = game.Players.LocalPlayer
  11.  
  12. h.Parent = game.Players.LocalPlayer.Character
  13. h.Name = "Hum"
  14.  
  15. game.Players.LocalPlayer.Character.Humanoid:Destroy()
  16.  
  17. for _,v in pairs(game.Players.LocalPlayer:GetDescendants()) do
  18.     if v.ClassName == "Tool" then
  19.         v.Parent = plr
  20.     end
  21. end
  22. wait(.5)
  23. tweenService, tweenInfo = game:GetService("TweenService"), TweenInfo.new(300, Enum.EasingStyle.Linear)
  24.  
  25. tween = tweenService:Create(game:GetService("Players")["LocalPlayer"].Character.HumanoidRootPart, tweenInfo, {CFrame = CFrame.new(0, -1000, 0)})
  26. tween:Play()
  27. end
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement