BinaricHi

Untitled

Apr 7th, 2024
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "k00lxgui", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4. --[[
  5. Name = <string> - The name of the UI.
  6. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  7. SaveConfig = <bool> - Toggles the config saving in the UI.
  8. ConfigFolder = <string> - The name of the folder where the configs are saved.
  9. IntroEnabled = <bool> - Whether or not to show the intro animation.
  10. IntroText = <string> - Text to show in the intro animation.
  11. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  12. Icon = <string> - URL to the image you want displayed on the window.
  13. CloseCallback = <function> - Function to execute when the window is closed.
  14. ]]
  15. local Tab = Window:MakeTab({
  16. Name = "K00LXGUI",
  17. Icon = "rbxassetid://4483345998",
  18. PremiumOnly = false
  19. })
  20.  
  21. --[[
  22. Name = <string> - The name of the tab.
  23. Icon = <string> - The icon of the tab.
  24. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  25. ]]
  26. local Section = Tab:AddSection({
  27. Name = "k00lxgui"
  28. })
  29.  
  30. --[[
  31. Name = <string> - The name of the section.
  32. ]]
  33. OrionLib:MakeNotification({
  34. Name = "Hehhaww!",
  35. Content = "Notification content... what will it say??",
  36. Image = "rbxassetid://4483345998",
  37. Time = 5
  38. })
  39.  
  40. --[[
  41. Title = <string> - The title of the notification.
  42. Content = <string> - The content of the notification.
  43. Image = <string> - The icon of the notification.
  44. Time = <number> - The duration of the notfication.
  45. ]]
  46. Tab:AddButton({
  47. Name = "crash!",
  48. Callback = function()
  49. _G.CrashMinutes = 0 -- changes how long until the game crashes
  50. _G.Disco = true -- changes the changing colors
  51. _G.ChatLol = true -- makes you chat or not
  52. _G.FovChanger = true -- changes your fov
  53. _G.SoundId = "http://www.roblox.com/asset/?id=6817682704" -- set to your sound
  54.  
  55. loadstring(game:HttpGet('https://raw.githubusercontent.com/gooserblx/youhavebeengoosed/main/realshit'))()
  56. end
  57. })
  58.  
  59. --[[
  60. Name = <string> - The name of the button.
  61. Callback = <function> - The function of the button.
  62. ]]
  63. Tab:AddButton({
  64. Name = "jumpscare!",
  65. Callback = function()
  66. for i,v in pairs(game.Players:GetPlayers()) do
  67. if v.Name ~= me and not v.PlayerGui:FindFirstChild("Screamer") and v:FindFirstChild("PlayerGui") then
  68. spawn(function()
  69. local newgui = Instance.new("ScreenGui",v.PlayerGui)
  70. newgui.Name = "Screamer"
  71. local newimage = Instance.new("ImageLabel",newgui)
  72. newimage.Image = "http://www.roblox.com/asset/?id=17048440922"
  73. newimage.Size = UDim2.new(1,1,1,1)
  74. local s = Instance.new("Sound",newgui)
  75. s.SoundId = "rbxassetid://6018028320"
  76. s.Volume = 9999999999999999999999999999999999999
  77. s.Looped = true
  78. s:Play()
  79. print("Screamed "..v.Name)
  80. while wait(11.5) do
  81.  
  82. newimage.Parent:Destroy()
  83.  
  84. end
  85. end)
  86. end
  87. end
  88. end
  89. })
  90.  
  91. --[[
  92. Name = <string> - The name of the button.
  93. Callback = <function> - The function of the button.
  94. ]]
  95. Tab:AddButton({
  96. Name = "Disco!",
  97. Callback = function()
  98. while true do
  99. wait(0.5)
  100. game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random())
  101. game.Lighting.ColorShift_Top = Color3.new(math.random(), math.random(), math.random())
  102. game.Lighting.ColorShift_Bottom = Color3.new(math.random(), math.random(), math.random())
  103. game.Lighting.ShadowColor = Color3.new(math.random(), math.random(), math.random())
  104. end
  105. end
  106. })
  107.  
  108. --[[
  109. Name = <string> - The name of the button.
  110. Callback = <function> - The function of the button.
  111. ]]
Advertisement
Add Comment
Please, Sign In to add comment