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 = "ijijg", 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.
- ]]local Section = Tab:AddSection({
- Name = "رغم ان عمري 10 سنوات و لكن انا مبرمج محترف"
- })
- --[[
- Name = <string> - The name of the section.
- ]]Tab:AddButton({
- Name = "اضغط هنا !",
- Callback = function()
- print("button pressed")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.
- ]]Tab:AddToggle({
- Name = "لا تضغط هنا ابداااااااً",
- Default = false,
- Callback = function(Value)
- print(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.
- ]]
- end
- })
- --[[
- Name = <string> - The name of the toggle.
- Default = <bool> - The default value of the toggle.
- Callback = <function> - The function of the toggle.
- ]]Tab:AddColorpicker({
- Name = "اختر لون السكربت :",
- Default = Color3.fromRGB(255, 0, 0),
- Callback = function(Value)
- print(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.
- ]]
- end
- })
- --[[
- Name = <string> - The name of the colorpicker.
- Default = <color3> - The default value of the colorpicker.
- Callback = <function> - The function of the colorpicker.
- ]]Tab:AddTextbox({
- Name = "رابط موقع",
- Default = "لا يوجد موقع هنا",
- 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.
- ]]local Section = Tab:AddSection({
- Name = "انا مصمم سكربتات محترف"
- })
- --[[
- Name = <string> - The name of the section.
- ]]local Section = Tab:AddSection({
- Name = "و اسمي محمد"
- })
- --[[
- Name = <string> - The name of the section.
- ]]local Section = Tab:AddSection({
- Name = "و عمري 10 سنوات"
- })
- --[[
- Name = <string> - The name of the section.
- ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement