Advertisement
Karap

ตัวอย่าง

Oct 14th, 2023
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Title of the library", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4.  
  5. local Tab = Window:MakeTab({
  6. Name = "Tab 1",
  7. Icon = "rbxassetid://4483345998", --ใช้ตรงนี้
  8. PremiumOnly = false
  9. })
  10.  
  11.  
  12. Tab:AddButton({
  13. Name = "ทำลาย",
  14. Callback = function()
  15. OrionLib:Destroy()
  16. end
  17. })
  18.  
  19.  
  20. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement