BinaricHi

Untitled

Apr 3rd, 2024 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.85 KB | Gaming | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "v00ly0lan", 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 = "main",
  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 = "main"
  28. })
  29.  
  30. --[[
  31. Name = <main> - The name of the section.
  32. ]]
  33. OrionLib:MakeNotification({
  34. Name = "v00ly0lan!",
  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 = "fling all!",
  48. Callback = function()
  49. loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Fe-fling-all-10553"))()
  50. end
  51. })
  52.  
  53. --[[
  54. Name = <fling all> - The name of the button.
  55. Callback = <function> - The function of the button.
  56. ]]
  57. Tab:AddButton({
  58. Name = "touch fling!",
  59. Callback = function()
  60. loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Touch-fling-10457"))()
  61. end
  62. })
  63.  
  64. --[[
  65. Name = <touch fling> - The name of the button.
  66. Callback = <function> - The function of the button.
  67. ]]
  68. Tab:AddButton({
  69. Name = "rainbow fly!",
  70. Callback = function()
  71. wait(3)
  72. local Name = "v00ly0lan"
  73. while true do
  74. local Number1 = math.random()
  75. local Number2 = math.random()
  76. local Number3 = math.random()
  77. local Part = Instance.new("Part")
  78. Part.Parent = game.Workspace
  79. Part.Position = game.Workspace:FindFirstChild(Name).HumanoidRootPart.Position --Use Torso on R6 games--
  80. Part.Size = Vector3.new(1, 1, 1)
  81. Part.Color = Color3.new(Number1, Number2, Number3)
  82. wait(0.01)
  83. end
  84. end
  85. })
  86.  
  87. --[[
  88. Name = <rainbow> - The name of the button.
  89. Callback = <function> - The function of the button.
  90. ]]
  91. Tab:AddButton({
  92. Name = "rejoin for rainbow fly (same server)",
  93. Callback = function()
  94. local ts = game:GetService("TeleportService")
  95.  
  96. local p = game:GetService("Players").LocalPlayer
  97.  
  98.  
  99.  
  100. ts:TeleportToPlaceInstance(game.PlaceId, game.JobId, p)
  101. end
  102. })
  103.  
  104. --[[
  105. Name = <rejoin> - The name of the button.
  106. Callback = <function> - The function of the button.
  107. ]]
  108. Tab:AddButton({
  109. Name = "disco!",
  110. Callback = function()
  111. while true do
  112. wait(0.5)
  113. game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random())
  114. game.Lighting.ColorShift_Top = Color3.new(math.random(), math.random(), math.random())
  115. game.Lighting.ColorShift_Bottom = Color3.new(math.random(), math.random(), math.random())
  116. game.Lighting.ShadowColor = Color3.new(math.random(), math.random(), math.random())
  117. end
  118. end
  119. })
  120.  
  121. --[[
  122. Name = <string> - The name of the button.
  123. Callback = <function> - The function of the button.
  124. ]]
  125. Tab:AddSlider({
  126. Name = "Slider",
  127. Min = 0,
  128. Max = 20,
  129. Default = 5,
  130. Color = Color3.fromRGB(255,255,255),
  131. Increment = 1,
  132. ValueName = "bananas",
  133. Callback = function(Value)
  134. print(Value)
  135. end
  136. })
  137.  
  138. --[[
  139. Name = <string> - The name of the slider.
  140. Min = <number> - The minimal value of the slider.
  141. Max = <number> - The maxium value of the slider.
  142. Increment = <number> - How much the slider will change value when dragging.
  143. Default = <number> - The default value of the slider.
  144. ValueName = <string> - The text after the value number.
  145. Callback = <function> - The function of the slider.
  146. ]]
  147. Tab:AddButton({
  148. Name = "walk 500!",
  149. Callback = function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 500
  150. end
  151. })
  152.  
  153. --[[
  154. Name = <string> - The name of the button.
  155. Callback = <function> - The function of the button.
  156. ]]
  157. Tab:AddButton({
  158. Name = "Spam, (toxic)",
  159. Callback = function()
  160. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("MAD? YOU BAD HAHAHA________________________________________________________________________________________________________. ", "All")
  161. end
  162. })
  163.  
  164. --[[
  165. Name = <string> - The name of the button.
  166. Callback = <function> - The function of the button.
  167. ]]
  168. Tab:AddButton({
  169. Name = "normal speed",
  170. Callback = function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  171. end
  172. })
  173.  
  174. --[[
  175. Name = <string> - The name of the button.
  176. Callback = <function> - The function of the button.
  177. ]]
  178. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  179.  
  180. --please delete if you hate map glitch cuz it's cause rainbow
  181.  
  182. --credits to someone who made this
  183. while true do
  184. for _, part in ipairs(workspace:GetDescendants()) do
  185. if part:IsA("BasePart") then
  186. local r = math.random()
  187. local g = math.random()
  188. local b = math.random()
  189. part.BrickColor = BrickColor.new(Color3.new(r, g, b))
  190. end
  191. end
  192. wait(0.10)
  193. end
  194. loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Nameless-Admin-no-byfron-ui-11288"))()
Advertisement
Add Comment
Please, Sign In to add comment