Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Boot
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- --LocalPlayer
- local Player = game.Players.LocalPlayer
- --Key Window
- local KeyWindow = OrionLib:MakeWindow({Name = "Key System", HidePremium = false, SaveConfig = true, IntroText = "Key System" })
- --Key
- _G.Key = "Chaos854704212"
- _G.KeyInput = "string"
- --Execute Function
- function Fling()
- --Boot
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- --Window
- local Window = OrionLib:MakeWindow({Name = "Chaos Shop", HidePremium = false, SaveConfig = true, IntroText = "Chaos Shop"})
- --Script Tab
- local ScriptTab = Window:MakeTab({
- Name = "Scripts",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --Section
- local ScriptSection = ScriptTab:AddSection({
- Name = "Scripts"
- })
- --Button
- ScriptTab:AddButton({
- Name = "Fling",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/BaconhairGamer/Invisible-Fling-Script-Roblox/main/Fling.lua", true))()
- OrionLib:MakeNotification({
- Name = "Successfully Loaded!",
- Content = "The Script Was Executed Successfully!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- --Infinite Yield Button
- ScriptTab:AddButton({
- Name = "Infinite Yield",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- OrionLib:MakeNotification({
- Name = "Successfully Loaded!",
- Content = "The Script Was Executed Successfully!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- })
- --Local Tab
- local LocalTab = Window:MakeTab({
- Name = "Local Player",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --Local Section
- local LocalSection = LocalTab:AddSection({
- Name = "LocalPlayer"
- })
- --WalkSpeed
- LocalTab:AddSlider({
- Name = "WalkSpeed",
- Min = 16,
- Max = 500,
- Default = 16,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "WalkSpeed",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end
- })
- --JumpPower
- LocalTab:AddSlider({
- Name = "JumpPower",
- Min = 50,
- Max = 500,
- Default = 50,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "JumpPower",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end
- })
- --Reset Button
- LocalTab:AddButton({
- Name = "Reset",
- Callback = function()
- game.Players.LocalPlayer.Character.Humanoid.Health = 0
- OrionLib:MakeNotification({
- Name = "Successfully Done!",
- Content = "The Script Was Successfully Executed",
- 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")
- end
- --Correct Function
- function CorrectKeyNotify()
- OrionLib:MakeNotification({
- Name = "Correct Key!",
- Content = "Successfully Entered as "..Player.Name.."!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- --Incorrect Function
- function IncorrectKeyNotify()
- OrionLib:MakeNotification({
- Name = "Incorrect Key!",
- Content = "Wrong key",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- --Notify
- OrionLib:MakeNotification({
- Name = "Logged In!",
- Content = "Successfully Logged In as a Guest",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- --Key Tab
- local KeyTab = KeyWindow:MakeTab({
- Name = "Key",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --Key TextBox
- KeyTab:AddTextbox({
- Name = "Enter Key",
- Default = "",
- TextDisappear = false,
- Callback = function(Value)
- _G.KeyInput = Value
- end
- })
- --Check Key Button
- KeyTab:AddButton({
- Name = "Check Key",
- Callback = function()
- if _G.KeyInput == _G.Key then
- CorrectKeyNotify()
- Fling()
- else
- IncorrectKeyNotify()
- end
- end
- })
- --Discord Tab
- local DiscordTab = KeyWindow: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