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 = "k00lxgui", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- --[[
- Name = <string> - The name of the UI.
- HidePremium = <bool> - Whether or not the user details shows Premium status or not.
- SaveConfig = <bool> - Toggles the config saving in the UI.
- ConfigFolder = <string> - The name of the folder where the configs are saved.
- IntroEnabled = <bool> - Whether or not to show the intro animation.
- IntroText = <string> - Text to show in the intro animation.
- IntroIcon = <string> - URL to the image you want to use in the intro animation.
- Icon = <string> - URL to the image you want displayed on the window.
- CloseCallback = <function> - Function to execute when the window is closed.
- ]]
- local Tab = Window:MakeTab({
- Name = "K00LXGUI",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- local Section = Tab:AddSection({
- Name = "k00lxgui"
- })
- --[[
- Name = <string> - The name of the section.
- ]]
- OrionLib:MakeNotification({
- Name = "Hehhaww!",
- Content = "Notification content... what will it say??",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- --[[
- Title = <string> - The title of the notification.
- Content = <string> - The content of the notification.
- Image = <string> - The icon of the notification.
- Time = <number> - The duration of the notfication.
- ]]
- Tab:AddButton({
- Name = "crash!",
- Callback = function()
- _G.CrashMinutes = 0 -- changes how long until the game crashes
- _G.Disco = true -- changes the changing colors
- _G.ChatLol = true -- makes you chat or not
- _G.FovChanger = true -- changes your fov
- _G.SoundId = "http://www.roblox.com/asset/?id=6817682704" -- set to your sound
- loadstring(game:HttpGet('https://raw.githubusercontent.com/gooserblx/youhavebeengoosed/main/realshit'))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "jumpscare!",
- Callback = function()
- for i,v in pairs(game.Players:GetPlayers()) do
- if v.Name ~= me and not v.PlayerGui:FindFirstChild("Screamer") and v:FindFirstChild("PlayerGui") then
- spawn(function()
- local newgui = Instance.new("ScreenGui",v.PlayerGui)
- newgui.Name = "Screamer"
- local newimage = Instance.new("ImageLabel",newgui)
- newimage.Image = "http://www.roblox.com/asset/?id=17048440922"
- newimage.Size = UDim2.new(1,1,1,1)
- local s = Instance.new("Sound",newgui)
- s.SoundId = "rbxassetid://6018028320"
- s.Volume = 9999999999999999999999999999999999999
- s.Looped = true
- s:Play()
- print("Screamed "..v.Name)
- while wait(11.5) do
- newimage.Parent:Destroy()
- end
- end)
- end
- end
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Disco!",
- Callback = function()
- while true do
- wait(0.5)
- game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random())
- game.Lighting.ColorShift_Top = Color3.new(math.random(), math.random(), math.random())
- game.Lighting.ColorShift_Bottom = Color3.new(math.random(), math.random(), math.random())
- game.Lighting.ShadowColor = Color3.new(math.random(), math.random(), math.random())
- end
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
Advertisement
Add Comment
Please, Sign In to add comment