Advertisement
DrakerMaker

Clone

May 26th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. local avatar = player.Character
  4.  
  5. local m = Instance.new("Hint")
  6.  
  7. m.Text = "Finally, I found out how to make a clone of me. - "..game.Players.LocalPlayer.Name
  8.  
  9. m.Parent = workspace
  10.  
  11. local cloneavatar = avatar:Clone()
  12. cloneavatar.Parent = workspace
  13. cloneavatar.Position = Vector3.new(math.random(), math.random(), math.random())
  14.  
  15. wait(3)
  16.  
  17. m:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement