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 = "TPKE", HidePremium = false, SaveConfig = true, ConfigFolder = "TPKE"})
- --[[
- 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 = "شوفو الرومات الثانيه ."
- })
- --[[
- Name = <string> - The name of the section.
- ]]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.
- ]]Tab:AddToggle({
- Name = "اوتو فارم انا متعمد اني اخليه ما يشتغل",
- 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 Section = Tab:AddSection({
- Name = "انا اقدر اسوي سكربتات مثل الاوتو فارم"
- })
- --[[
- Name = <string> - The name of the section.
- ]]local Section = Tab:AddSection({
- Name = "الاعدادات"
- })
- --[[
- Name = <string> - The name of the section.
- ]]Tab:AddColorpicker({
- Name = "اعدادات ما تشتغل",
- Default = Color3.fromRGB(255, 0, 0),
- Callback = function(Value)
- 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.
- ]]local Section = Tab:AddSection({
- Name = "انا مهما حاولت ما اقدر اسوي اعدادات الالوان لا يروح بالك بعيد"
- })
- --[[
- Name = <string> - The name of the section.
- ]]local Section = Tab:AddSection({
- Name = "بس انا اقدر اسوي اعدادات تغير اللغه"
- })
- --[[
- Name = <string> - The name of the section.
- ]]Tab:AddTextbox({
- Name = "ارسال رساله لمطور السكربت",
- Default = "انت تقدر ترسل لي رساله",
- TextDisappear = true,
- Callback = function(Value)OrionLib:MakeNotification({
- Name = "شكرا",
- Content = "شكرا على رسالتك الي انا من سابع المستحيلات اشوفها انتظر 10",
- Image = "rbxassetid://4483345998",
- Time = 10
- })
- --[[
- 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 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 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 = 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 button.
- Callback = <function> - The function of the button.
- ]]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.
- ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement