Advertisement
teamkel01

Munching masters

Jun 24th, 2023 (edited)
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. -- credits to teamkel01
  2.  
  3. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  4. local Window = OrionLib:MakeWindow({Name = "Munching Masters", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  5. local Tab = Window:MakeTab({
  6. Name = "Main",
  7. Icon = "rbxassetid://4483345998",
  8. PremiumOnly = false
  9. })
  10. Tab:AddToggle({
  11. Name = "Auto Eat",
  12. Default = false,
  13. Callback = function(Value)
  14. getgenv().loop1 = Value
  15. while loop1 == true do
  16. wait(0.1)
  17. game:GetService("ReplicatedStorage").Events.Player.Eat:FireServer()
  18. end
  19. end
  20. })
  21. Tab:AddToggle({
  22. Name = "Auto Sell",
  23. Default = false,
  24. Callback = function(Value)
  25. getgenv().loop2 = Value
  26. while loop2 == true do
  27. wait(0.01)
  28. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(348, 4, 447)
  29. wait(0.01)
  30. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(339, 4, 437)
  31. end
  32. end
  33. })
  34. Tab:AddToggle({
  35. Name = "Free money",
  36. Default = false,
  37. Callback = function(Value)
  38. getgenv().loop3 = Value
  39. while loop3 == true do
  40. wait()
  41. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1280, 40, 1220)
  42. wait(0.2)
  43. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1279, 38, 1225)
  44. end
  45. end
  46. })
  47. local Tab = Window:MakeTab({
  48. Name = "Extra",
  49. Icon = "rbxassetid://4483345998",
  50. PremiumOnly = false
  51. })
  52. Tab:AddSlider({
  53. Name = "Speed",
  54. Min = 18,
  55. Max = 250,
  56. Default = 18,
  57. Color = Color3.fromRGB(255,255,255),
  58. Increment = 1,
  59. ValueName = "Speed",
  60. Callback = function(Value)
  61. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  62. end
  63. })
  64. Tab:AddSlider({
  65. Name = "Jumppower",
  66. Min = 50,
  67. Max = 10000,
  68. Default = 50,
  69. Color = Color3.fromRGB(255,255,255),
  70. Increment = 10,
  71. ValueName = "jumppower",
  72. Callback = function(Value)
  73. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  74. end
  75. })
  76. Tab:AddButton({
  77. Name = "Inf jump",
  78. Callback = function()
  79. local InfiniteJumpEnabled = true
  80. game:GetService("UserInputService").JumpRequest:connect(function()
  81. if InfiniteJumpEnabled then
  82. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  83. end
  84. end)
  85. end
  86. })
  87. Tab:AddButton({
  88. Name = "Tp Koth",
  89. Callback = function()
  90. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-155, 113, 591)
  91. end
  92. })
  93.  
  94.  
  95. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement