Advertisement
Preston12412

Pet Sim 99 New op script

Jan 17th, 2024
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "KeySystem", HidePremium = true, SaveConfig = true, IntroText = "Key System"})
  3.  
  4. OrionLib:MakeNotification({
  5. Name = "Welcome",
  6. Content = "Your In A Key System",
  7. Image = "rbxassetid://4483345998",
  8. Time = 5
  9. })
  10.  
  11. _G.Key = "Przemx_123" -- You Put Your Key Here
  12. _G.KeyInput = "string"
  13.  
  14. function MakeScriptHub()
  15. loadstring(game:HttpGet("https://raw.githubusercontent.com/Smallgames455/Universe-Script-V2/main/Universal%20Script%20V2"))();
  16.  
  17. end
  18.  
  19. function CorrectKeyNotifications()
  20. OrionLib:MakeNotification({
  21. Name = "Correct Key",
  22. Content = "You Entered The Correct Key",
  23. Image = "rbxassetid://4483345998",
  24. Time = 5
  25. })
  26. end
  27.  
  28. function WrongKeyNotifications()
  29. OrionLib:MakeNotification({
  30. Name = " Wrong Key",
  31. Content = "You Entered A Wrong Key",
  32. Image = "rbxassetid://4483345998",
  33. Time = 5
  34. })
  35. end
  36.  
  37. local Tab = Window:MakeTab({
  38. Name = "Key 🎄",
  39. Icon = "rbxassetid://4483345998",
  40. PremiumOnly = false
  41. })
  42.  
  43. Tab:AddTextbox({
  44. Name = "Enter Key 🎄",
  45. Default = "",
  46. TextDisappear = true,
  47. Callback = function(Value)
  48. _G.KeyInput = Value
  49. end
  50. })
  51.  
  52. Tab:AddButton({
  53. Name = "Check Key! 🎄",
  54. Callback = function()
  55. if _G.KeyInput == _G.Key then
  56. MakeScriptHub()
  57. CorrectKeyNotifications()
  58. else
  59. WrongKeyNotifications()
  60. end
  61. end
  62. })
  63.  
  64. Tab:AddButton({
  65. Name = "Click To Get The Key 🎄",
  66. Callback = function()
  67. setclipboard("https://discord.gg/RdeGazySq9")
  68. toclipboard("https://discord.gg/RdeGazySq9")
  69. print("button pressed")
  70. end
  71. })
  72.  
  73. Tab:AddLabel("Merry Christmas 🎄")
  74.  
  75. local Tab = Window:MakeTab({
  76. Name = "Links",
  77. Icon = "rbxassetid://4483345998",
  78. PremiumOnly = false
  79. })
  80.  
  81. Tab:AddButton({
  82. Name = "YouTube🎄",
  83. Callback = function()
  84. setclipboard("https://youtube.com/@AlexisNamedAlex?si=ojXkmhSw0skPNUl_")
  85. toclipboard("https://youtube.com/@AlexisNamedAlex?si=ojXkmhSw0skPNUl_")
  86. print("button pressed")
  87. end
  88. })
  89.  
  90. Tab:AddButton({
  91. Name = "ClickTab:AddButton",
  92. Name = "Alex Another dc Server",
  93. Callback = function()
  94. setclipboard("https://discord.gg/RdeGazySq9")
  95. toclipboard("https://discord.gg/RdeGazySq9")
  96. print("button pressed")
  97. end
  98. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement