Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Chaos Shop / Jump Power +1", HidePremium = false, SaveConfig = true, ConfigFolder = "Chaos", IntroText = "Chaos Shop"})
- plr = game.Players.LocalPlayer
- OrionLib:MakeNotification({
- Name = "Logged In!",
- Content = "Successfully Logged In As "..plr.Name,
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- local LocalTab = Window:MakeTab({
- Name = "LocalPlayer",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local Section = LocalTab:AddSection({
- Name = "Stats"
- })
- LocalTab:AddSlider({
- Name = "WalkSpeed",
- Min = 16,
- Max = 500,
- Default = 16,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Speed",
- Callback = function(Value)
- plr.Character.Humanoid.WalkSpeed = Value
- end
- })
- LocalTab:AddSlider({
- Name = "JumpPower",
- Min = 50,
- Max = 1000000,
- Default = 50,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Jump",
- Callback = function(Value)
- plr.Character.Humanoid.JumpPower = Value
- end
- })
- LocalTab:AddButton({
- Name = "Reset Stats",
- Callback = function()
- plr.Character.Humanoid.WalkSpeed = 16
- plr.Character.Humanoid.JumpPower = 50
- end
- })
- local Section = LocalTab:AddSection({
- Name = "General"
- })
- LocalTab:AddButton({
- Name = "Reset",
- Callback = function()
- plr.Character.Humanoid.Health = 0
- end
- })
- LocalTab:AddButton({
- Name = "Auto Win",
- Callback = function()
- game.Workspace.ReBabouine.HumanoidRootPart:MoveTo(game.Workspace.Union.Position.Value)
- end
- })
- local ItemsTab = Window:MakeTab({
- Name = "Items",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local Section = ItemsTab:AddSection({
- Name = "Give Items"
- })
- ItemsTab:AddButton({
- Name = "Hamburger",
- Callback = function()
- game.ReplicatedStorage.ToolEvents.HamburgerEvent:FireServer()
- OrionLib:MakeNotification({
- Name = "Item",
- Content = "Successfully Gave Hamburger!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- ItemsTab:AddButton({
- Name = "Bloxy Cola",
- Callback = function()
- game.ReplicatedStorage.ToolEvents.BloxyColaEvent:FireServer()
- OrionLib:MakeNotification({
- Name = "Item",
- Content = "Successfully Gave Bloxy Cola!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- ItemsTab:AddButton({
- Name = "Speed Coil",
- Callback = function()
- game.ReplicatedStorage.ToolEvents.SpeedCoilEvent:FireServer()
- OrionLib:MakeNotification({
- Name = "Item",
- Content = "Successfully Gave Speed Coil!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- ItemsTab:AddButton({
- Name = "Spray",
- Callback = function()
- game.ReplicatedStorage.ToolEvents.SprayEvent:FireServer()
- OrionLib:MakeNotification({
- Name = "Item",
- Content = "Successfully Gave Spray!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- ItemsTab:AddButton({
- Name = "Saxophone",
- Callback = function()
- game.ReplicatedStorage.ToolEvents.SaxophoneEvent:FireServer()
- OrionLib:MakeNotification({
- Name = "Item",
- Content = "Successfully Gave Saxophone!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- ItemsTab:AddButton({
- Name = "Radio",
- Callback = function()
- game.ReplicatedStorage.ToolEvents.RadioEvent:FireServer()
- OrionLib:MakeNotification({
- Name = "Item",
- Content = "Successfully Gave Radio!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- --Discord Tab
- local DiscordTab = Window:MakeTab({
- Name = "Discord",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --Discord Section
- local DiscordSection = DiscordTab:AddSection({
- Name = "Discord"
- })
- --Label
- DiscordTab:AddLabel("Discord Server: https://discord.gg/eR55uPdt5M")
- --Label
- DiscordTab:AddLabel("Owner: GiaKlamata#1605")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement