Advertisement
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 = "Vlorp Script | Adopt Me [5.6]", 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 = "Dupe Eggs",
- 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.
- ]]
- Tab:AddTextbox({
- Name = "Dupe Egg",
- Default = "Egg Name",
- TextDisappear = true,
- Callback = function(Value)
- print(Value)
- end
- })
- --[[
- Name = <string> - The name of the textbox.
- Default = <string> - The default value of the textbox.
- TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
- Callback = <function> - The function of the textbox.
- ]]
- Tab:AddToggle({
- Name = "👆Click To Start Dupe Eggs",
- Default = false,
- Callback = function(Value)
- print(Value)
- end
- })
- --[[
- Name = <string> - The name of the toggle.
- Default = <bool> - The default value of the toggle.
- Callback = <function> - The function of the toggle.
- ]]
- local Tab = Window:MakeTab({
- Name = "Trade Scam",
- 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.
- ]]
- Tab:AddTextbox({
- Name = "Username",
- Default = "Player",
- TextDisappear = false,
- Callback = function(Value)
- end
- })
- --[[
- Name = <string> - The name of the textbox.
- Default = <string> - The default value of the textbox.
- TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
- Callback = <function> - The function of the textbox.
- ]]
- Tab:AddToggle({
- Name = "🧊Freeze Trade",
- Default = false,
- Callback = function(Value)
- OrionLib:MakeNotification({
- Name = "Freeze Trade Enabled!",
- Content = "your pet is now safe... remove all your pets now!",
- 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.
- ]]
- end
- })
- --[[
- Name = <string> - The name of the toggle.
- Default = <bool> - The default value of the toggle.
- Callback = <function> - The function of the toggle.
- ]]
- local Tab = Window:MakeTab({
- Name = "Dupe Pets",
- 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.
- ]]
- Tab:AddTextbox({
- Name = "Dupe Pets",
- Default = "Pet Name",
- TextDisappear = true,
- Callback = function(Value)
- print(Value)
- end
- })
- --[[
- Name = <string> - The name of the textbox.
- Default = <string> - The default value of the textbox.
- TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
- Callback = <function> - The function of the textbox.
- ]]
- Tab:AddToggle({
- Name = "👆Click To Start Dupe Pets",
- Default = false,
- Callback = function(Value)
- print(Value)
- end
- })
- --[[
- Name = <string> - The name of the toggle.
- Default = <bool> - The default value of the toggle.
- Callback = <function> - The function of the toggle.
- ]]
- local Tab = Window:MakeTab({
- Name = "AutoFarm",
- 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.
- ]]
- Tab:AddButton({
- Name = "Get AutoFarm Source",
- Callback = function()
- print("button pressed")
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- local Tab = Window:MakeTab({
- Name = "Credits | Discord ",
- 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.
- ]]
- Tab:AddLabel("Discord: discord.gg/yegwm8aQsB")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement