Advertisement
SlappyDappyCrappy

eeee

Aug 4th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. cloning = false
  2. mouse = game.Players.LocalPlayer:GetMouse()
  3. function clone(key)
  4.     key = key:lower()
  5.     if key == "e" then
  6.         if not cloning then
  7.             cloning = true
  8.             game.Players.LocalPlayer.Character.Archivable = true
  9.             local player = game.Players.LocalPlayer.Character:Clone()
  10.             game.Players.LocalPlayer.Character.Archivable = false
  11.             while true do
  12.             player.Humanoid.WalkToPoint = game.Players.LocalPlayer.Character.Torso.Position
  13.             wait()
  14.             end
  15.             cloning = false
  16.         end
  17.     end
  18. end
  19. mouse.KeyDown:connect(clone)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement