Advertisement
boboh

Untitled

Feb 16th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow('')
  3. local b = w:Button("Gamepasses for free", function()
  4. game.Players.LocalPlayer.Backpack:ClearAllChildren()
  5. game.Players.LocalPlayer["MGear"]:FireServer()
  6. game.Players.LocalPlayer["Pets"]:FireServer()
  7. game.Players.LocalPlayer["Gravity"]:FireServer()
  8. game.Players.LocalPlayer["Taunt"]:FireServer()
  9. end)
  10. local b = w:Button("Admin features", function()
  11. mouse = game.Players.LocalPlayer:GetMouse()
  12. tool = Instance.new("Tool")
  13. tool.RequiresHandle = false
  14. tool.Name = "Crash."
  15. tool.Activated:connect(function()
  16. if game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  17. game.Players[mouse.Target.Parent.Name].AdvancedRender:FireServer()
  18. end
  19. end)
  20. tool.Parent = game.Players.LocalPlayer.Backpack
  21. -- -- --
  22. mouse = game.Players.LocalPlayer:GetMouse()
  23. tool = Instance.new("Tool")
  24. tool.RequiresHandle = false
  25. tool.Name = "Robotify."
  26. tool.Activated:connect(function()
  27. if game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  28. game.Players[mouse.Target.Parent.Name].ThreeMillion:FireServer()
  29. end
  30. end)
  31. tool.Parent = game.Players.LocalPlayer.Backpack
  32. -- -- --
  33. mouse = game.Players.LocalPlayer:GetMouse()
  34. tool = Instance.new("Tool")
  35. tool.RequiresHandle = false
  36. tool.Name = "ThirteenMillionify."
  37. tool.Activated:connect(function()
  38. if game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  39. game.Players[mouse.Target.Parent.Name].ThirteenMillion:FireServer()
  40. end
  41. end)
  42. tool.Parent = game.Players.LocalPlayer.Backpack
  43. -- -- --
  44. mouse = game.Players.LocalPlayer:GetMouse()
  45. tool = Instance.new("Tool")
  46. tool.RequiresHandle = false
  47. tool.Name = "Respawn."
  48. tool.Activated:connect(function()
  49. if game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  50. game.Players[mouse.Target.Parent.Name]["Respawn-Character"]:FireServer()
  51. end
  52. end)
  53. tool.Parent = game.Players.LocalPlayer.Backpack
  54. -- -- --
  55. mouse = game.Players.LocalPlayer:GetMouse()
  56. tool = Instance.new("Tool")
  57. tool.RequiresHandle = false
  58. tool.Name = "Give Gamepasses."
  59. tool.Activated:connect(function()
  60. if game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  61. game.Players[mouse.Target.Parent.Name]["MGear"]:FireServer()
  62. game.Players[mouse.Target.Parent.Name]["Pets"]:FireServer()
  63. game.Players[mouse.Target.Parent.Name]["Gravity"]:FireServer()
  64. game.Players[mouse.Target.Parent.Name]["Taunt"]:FireServer()
  65. end
  66. end)
  67. tool.Parent = game.Players.LocalPlayer.Backpack
  68. -- -- --
  69. mouse = game.Players.LocalPlayer:GetMouse()
  70. tool = Instance.new("Tool")
  71. tool.RequiresHandle = false
  72. tool.Name = "Give Lighting."
  73. tool.Activated:connect(function()
  74. if game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  75. game.Players[mouse.Target.Parent.Name].Flare:FireServer()
  76. game.Players[mouse.Target.Parent.Name].GlowStick:FireServer()
  77. game.Players[mouse.Target.Parent.Name].PowerLED:FireServer()
  78. game.Players[mouse.Target.Parent.Name].FlashLight:FireServer()
  79. game.Players[mouse.Target.Parent.Name].Lantern:FireServer()
  80. game.Players[mouse.Target.Parent.Name].Torch:FireServer()
  81. game.Players[mouse.Target.Parent.Name].iPhone:FireServer()
  82. game.Players[mouse.Target.Parent.Name].FlareGuns:FireServer()
  83. end
  84. end)
  85. tool.Parent = game.Players.LocalPlayer.Backpack
  86. -- -- --
  87. mouse = game.Players.LocalPlayer:GetMouse()
  88. tool = Instance.new("Tool")
  89. tool.RequiresHandle = false
  90. tool.Name = "Clear Hat's."
  91. tool.Activated:connect(function()
  92. if game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  93. game.Players[mouse.Target.Parent.Name].ClearHats:FireServer()
  94. end
  95. end)
  96. tool.Parent = game.Players.LocalPlayer.Backpack
  97. end)
  98. local old = workspace.CurrentCamera.FieldOfView
  99. local s = w:Slider("FOV", {
  100. min = math.floor(workspace.CurrentCamera.FieldOfView);
  101. max = 120;
  102. flag = 'fov'
  103. }, function(v)
  104. workspace.CurrentCamera.FieldOfView = v;
  105. end)
  106. local box = w:Box('WalkSpeed', {
  107. flag = "ws";
  108. type = 'number';
  109. }, function(new, old, enter)
  110. print(new, old, enter)
  111. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(new)
  112. end)
  113. local box = w:Box('JumpPower', {
  114. flag = "jp";
  115. type = 'number';
  116. }, function(new, old, enter)
  117. print(new, old, enter)
  118. game.Players.LocalPlayer.Character.Humanoid.JumpPower = tonumber(new)
  119. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement