Advertisement
Guest User

Untitled

a guest
May 28th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. name = "gumymonster" --YOURNAMEHERE
  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 Ban 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. bangun = true
  27. admin = false
  28. banbullethit = true
  29. end
  30.  
  31. equip = function(mouse)
  32. flash = true
  33. soldier = true --CHANGE THESE TO 'false' IF YOU DON'T WANT THESE
  34. end
  35.  
  36. bin.Selected:connect(function(mouse)
  37. equip(mouse)
  38. bin.KeyDown:connect(function(key)
  39. key = key:lower()
  40. if key == "r" then
  41. attack()
  42. end
  43. end)
  44. end)
  45.  
  46.  
  47.  
  48.  
  49. end
  50.  
  51.  
  52. --[[
  53. p.Anchored = true
  54. p.Locked = true
  55. function fWeld (APartZ,ZPartA, zCoCo, a, b, c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement