Advertisement
ProScripter29

Masterblox Script

Apr 5th, 2023
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.22 KB | None | 0 0
  1. -- Universal Hacks --
  2.  
  3. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  4.  
  5. local Window = OrionLib:MakeWindow({Name = "Masterblox Script", HidePremium = false, SaveConfig = true, ConfigFolder = "MasterbloxConfig"})
  6.  
  7. local LastGravity = workspace.Gravity
  8.  
  9. infiniteJumpEnabled = false
  10.  
  11. -- Hub --
  12.  
  13. local Tab = Window:MakeTab({
  14.     Name = "Main",
  15.     Icon = "rbxassetid://4483345998",
  16.     PremiumOnly = false
  17. })
  18.  
  19. Tab:AddParagraph("Easy Transport","Useful for easy escaping and fast transportation")
  20.  
  21. Tab:AddToggle({
  22.     Name = "Infinite Jumping",
  23.     Default = false,
  24.     Callback = function(Value)
  25.         infiniteJumpEnabled = Value
  26.     end    
  27. })
  28.  
  29. Tab:AddToggle({
  30.     Name = "Low Gravity",
  31.     Default = false,
  32.     Callback = function(Value)
  33.         if Value == true then
  34.             workspace.Gravity = 14
  35.         else
  36.             workspace.Gravity = LastGravity
  37.         end
  38.     end    
  39. })
  40.  
  41. Tab:AddButton({
  42.     Name = "Toggle Fly",
  43.     Callback = function()
  44.         loadstring(game:HttpGet("https://pastebin.com/raw/h5QDPy6s"))()
  45.     end,
  46. })
  47.  
  48. -- Script --
  49.  
  50. game.UserInputService.JumpRequest:Connect(function()
  51.     if infiniteJumpEnabled == true then
  52.         game.Players.LocalPlayer.Character.Humanoid:ChangeState("Jumping")
  53.     end
  54. end)
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement