Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- credits to teamkel01
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Munching Masters", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- local Tab = Window:MakeTab({
- Name = "Main",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab:AddToggle({
- Name = "Auto Eat",
- Default = false,
- Callback = function(Value)
- getgenv().loop1 = Value
- while loop1 == true do
- wait(0.1)
- game:GetService("ReplicatedStorage").Events.Player.Eat:FireServer()
- end
- end
- })
- Tab:AddToggle({
- Name = "Auto Sell",
- Default = false,
- Callback = function(Value)
- getgenv().loop2 = Value
- while loop2 == true do
- wait(0.01)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(348, 4, 447)
- wait(0.01)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(339, 4, 437)
- end
- end
- })
- Tab:AddToggle({
- Name = "Free money",
- Default = false,
- Callback = function(Value)
- getgenv().loop3 = Value
- while loop3 == true do
- wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1280, 40, 1220)
- wait(0.2)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1279, 38, 1225)
- end
- end
- })
- local Tab = Window:MakeTab({
- Name = "Extra",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab:AddSlider({
- Name = "Speed",
- Min = 18,
- Max = 250,
- Default = 18,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Speed",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end
- })
- Tab:AddSlider({
- Name = "Jumppower",
- Min = 50,
- Max = 10000,
- Default = 50,
- Color = Color3.fromRGB(255,255,255),
- Increment = 10,
- ValueName = "jumppower",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end
- })
- Tab:AddButton({
- Name = "Inf jump",
- Callback = function()
- local InfiniteJumpEnabled = true
- game:GetService("UserInputService").JumpRequest:connect(function()
- if InfiniteJumpEnabled then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end)
- end
- })
- Tab:AddButton({
- Name = "Tp Koth",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-155, 113, 591)
- end
- })
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement