Advertisement
ROBLOXG4mer1234

Clone by pressing f[R15]

Sep 14th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local mouse = game.Players.LocalPlayer:GetMouse()
  2.  
  3. mouse.KeyDown:connect(function(key)
  4. if key=="f" then
  5. local target = game.Players.LocalPlayer.Character --Put the thing you want to clone here,
  6. target.archivable = true
  7. local c = target:Clone()
  8. c.Parent = workspace
  9. local s = Instance.new("Sound", target)
  10. s.SoundId = "rbxassetid://1046591724"
  11. s.Volume = math.huge
  12. s:Play()
  13. wait(2)
  14. s:Remove()
  15. end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement