Advertisement
flippa101

ooo

Jul 6th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. name = "thebeast46"
  2. plr = game.Players[name]
  3. char = plr.Character
  4. primarycolor = BrickColor.new("Bright blue") -- PRIMARY COLOR
  5. secondarycolor = BrickColor.new("Bright bluish green") --SECONDARY COLOR
  6.  
  7. weld = function(par,p0,p1,c0,c1,name)
  8. local weld = Instance.new("Weld",par)
  9. weld.Part0 = p0
  10. weld.Part1 = p1
  11. weld.C0 = c0
  12. weld.C1 = c1
  13. weld.Name = name
  14. end
  15.  
  16. if script.Parent.ClassName ~= "HopperBin" then
  17. local bin = Instance.new("HopperBin",plr.Backpack)
  18. bin.Name = "ROBLOX Admin Tool"
  19. bin.BinType = "Script"
  20. script:clone().Parent = bin
  21. script:remove()
  22. else
  23. bin = script.Parent;
  24.  
  25. attack = function() --CHANGE TO TRUE OR FALSE
  26. TakeDamage(122)
  27. autoEquip = true
  28. jump = false
  29. ragdoll = true
  30. hat = true
  31. attack = true
  32. explosion = false
  33. end
  34.  
  35. equip = function(mouse)
  36. flash = true
  37. soldier = true --CHANGE THESE TO 'false' IF YOU DON'T WANT THESE
  38. end
  39.  
  40. bin.Selected:connect(function(mouse)
  41. equip(mouse)
  42. bin.KeyDown:connect(function(key)
  43. key = key:lower()
  44. if key == "r" then
  45. attack()
  46. end
  47. end)
  48. end)
  49.  
  50.  
  51.  
  52.  
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement