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 = "Shaodo", 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 = "كلام مهم",
- 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 = "هذا السكربت ما له فائدة"
- })
- --[[
- Name = <string> - The name of the section.
- ]]Tab:AddButton({
- Name = "سكربت طيران",
- Callback = function()
- print("button pressed")OrionLib:MakeNotification({
- Name = "معلومة",
- Content = "لقد وقعت بالفخ و لن يتم ازالة هذه الرسالة الى ان تطلع من الماب",
- Image = "rbxassetid://4483345998",
- Time = 99999999999999999999999999
- })
- --[[
- 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 button.
- Callback = <function> - The function of the button.
- ]]OrionLib:MakeNotification({
- Name = ".",
- Content = "😂😂😂😂😂😂😂😂😂",
- Image = "rbxassetid://4483345998",
- Time = 100000000000000000000000000
- })
- --[[
- 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:AddColorpicker({
- Name = "اختار لون السكربت",
- Default = Color3.fromRGB(255, 0, 0),
- Callback = function(Value)OrionLib:MakeNotification({
- Name = "ملاحظة",
- Content = "الاعدادات ما تشتغل",
- Image = "rbxassetid://4483345998",
- Time = 3
- })
- --[[
- 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.
- ]]
- print(Value)
- end
- })
- --[[
- Name = <string> - The name of the colorpicker.
- Default = <color3> - The default value of the colorpicker.
- Callback = <function> - The function of the colorpicker.
- ]]Tab:AddToggle({
- Name = "اوتو فارم",
- Default = false,
- Callback = function(Value)OrionLib:MakeNotification({
- Name = "ملاحظة",
- Content = "ترا نص الاشياء بهذا السكربت ما تشتغل لأن هذا السكربت سكربت تجريبي",
- 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.
- ]]
- 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.
- ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement