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 = "v00ly0lan", 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 = "main",
- 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 = "main"
- })
- --[[
- Name = <main> - The name of the section.
- ]]
- OrionLib:MakeNotification({
- Name = "v00ly0lan!",
- 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 = "fling all!",
- Callback = function()
- loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Fe-fling-all-10553"))()
- end
- })
- --[[
- Name = <fling all> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "touch fling!",
- Callback = function()
- loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Touch-fling-10457"))()
- end
- })
- --[[
- Name = <touch fling> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "rainbow fly!",
- Callback = function()
- wait(3)
- local Name = "v00ly0lan"
- while true do
- local Number1 = math.random()
- local Number2 = math.random()
- local Number3 = math.random()
- local Part = Instance.new("Part")
- Part.Parent = game.Workspace
- Part.Position = game.Workspace:FindFirstChild(Name).HumanoidRootPart.Position --Use Torso on R6 games--
- Part.Size = Vector3.new(1, 1, 1)
- Part.Color = Color3.new(Number1, Number2, Number3)
- wait(0.01)
- end
- end
- })
- --[[
- Name = <rainbow> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "rejoin for rainbow fly (same server)",
- Callback = function()
- local ts = game:GetService("TeleportService")
- local p = game:GetService("Players").LocalPlayer
- ts:TeleportToPlaceInstance(game.PlaceId, game.JobId, p)
- end
- })
- --[[
- Name = <rejoin> - 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.
- ]]
- Tab:AddSlider({
- Name = "Slider",
- Min = 0,
- Max = 20,
- Default = 5,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "bananas",
- Callback = function(Value)
- print(Value)
- end
- })
- --[[
- Name = <string> - The name of the slider.
- Min = <number> - The minimal value of the slider.
- Max = <number> - The maxium value of the slider.
- Increment = <number> - How much the slider will change value when dragging.
- Default = <number> - The default value of the slider.
- ValueName = <string> - The text after the value number.
- Callback = <function> - The function of the slider.
- ]]
- Tab:AddButton({
- Name = "walk 500!",
- Callback = function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 500
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Spam, (toxic)",
- Callback = function()
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("MAD? YOU BAD HAHAHA________________________________________________________________________________________________________. ", "All")
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "normal speed",
- Callback = function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- --please delete if you hate map glitch cuz it's cause rainbow
- --credits to someone who made this
- while true do
- for _, part in ipairs(workspace:GetDescendants()) do
- if part:IsA("BasePart") then
- local r = math.random()
- local g = math.random()
- local b = math.random()
- part.BrickColor = BrickColor.new(Color3.new(r, g, b))
- end
- end
- wait(0.10)
- end
- loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Nameless-Admin-no-byfron-ui-11288"))()
Advertisement
Add Comment
Please, Sign In to add comment