Advertisement
billwa

Mind Control Hopperbin

Aug 6th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. mind_control = Instance.new("HopperBin",game.Players.meunumbertwo.Backpack)
  2. mind_control.Name = "Mind Control"
  3.  
  4. function onButton1Down(mouse)
  5. local p = mouse.Target.Parent:GetChildren()
  6. for i = 1, #p do
  7. if p[i].className == ("Humanoid") then
  8. wait(0.1)
  9. mind_control.Parent.Parent.Character = p[i].Parent
  10. end
  11. end
  12. end
  13.  
  14. function onSelected(mouse)
  15. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  16. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  17. end
  18.  
  19. mind_control.Selected:connect(onSelected)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement