Advertisement
zdkjaimeoficial

Untitled

Jan 31st, 2025
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.49 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "🛠️ Official Hub 🛠️ - PetsGo",
  4. Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
  5. LoadingTitle = "Official Hub",
  6. LoadingSubtitle = "by off Ja1m3",
  7. Theme = "Amethyst", -- Check https://docs.sirius.menu/rayfield/configuration/themes
  8.  
  9. DisableRayfieldPrompts = false,
  10. DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
  11.  
  12. ConfigurationSaving = {
  13. Enabled = true,
  14. FolderName = nil, -- Create a custom folder for your hub/game
  15. FileName = "Official Hub"
  16. },
  17.  
  18. Discord = {
  19. Enabled = false, -- Prompt the user to join your Discord server if their executor supports it
  20. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
  21. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  22. },
  23.  
  24. KeySystem = false, -- Set this to true to use our key system
  25. KeySettings = {
  26. Title = "Untitled",
  27. Subtitle = "Key System",
  28. Note = "No method of obtaining the key is provided", -- Use this to tell the user how to get a key
  29. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  30. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  31. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  32. Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  33. }
  34. })
  35.  
  36. local MainTab = Window:CreateTab("🏠 Trade", nil) -- Title, Image
  37. local MainSection = MainTab:CreateSection("Main")
  38.  
  39.  
  40. Rayfield:Notify({
  41. Title = "Script Executed",
  42. Content = "Enjoy The 🛠️ Official Hub 🛠️",
  43. Duration = 4,
  44. Image = 4483362458,
  45. })
  46.  
  47. local Button = MainTab:CreateButton({
  48. Name = "✅ Trade Scam ✅",
  49. Image = 4483362458,
  50. Callback = function()
  51. Rayfield:Notify({
  52. Title = "Trade Scam Enabled ✅",
  53. Content = "You enabled Correctly",
  54. Duration = 6.5,
  55. Image = 4483362458,
  56. })
  57. end,
  58. })
  59.  
  60. local Button = MainTab:CreateButton({
  61. Name = "❌ Trade Scam ❌",
  62. Callback = function()
  63. Rayfield:Notify({
  64. Title = "Trade Scam Disabled ❌",
  65. Content = "You disabled Correctly",
  66. Duration = 6.5,
  67. Image = 4483362458,
  68. })
  69. end,
  70. })
  71.  
  72. local Main2Tab = Window:CreateTab("🏠 Pet Section", nil) -- Title, Image
  73. local Main2Section = Main2Tab:CreateSection("💸 Huge Hunter")
  74.  
  75. local Button = Main2Tab:CreateButton({
  76. Name = "✅ Huge Hunter ✅",
  77. Callback = function()
  78. Rayfield:Notify({
  79. Title = "Huge Hunter Enabled ✅",
  80. Content = "You enabled Correctly",
  81. Duration = 6.5,
  82. Image = 4483362458,
  83. })
  84. end,
  85. })
  86.  
  87. local Button = Main2Tab:CreateButton({
  88. Name = "❌ Huge hunter ❌",
  89. Callback = function()
  90. Rayfield:Notify({
  91. Title = "Huge Hunter Disabled ❌",
  92. Content = "You disabled Correctly",
  93. Duration = 6.5,
  94. Image = 4483362458,
  95. })
  96. end,
  97. })
  98.  
  99. local Main3Section = Main2Tab:CreateSection("😺 Huge Spawner")
  100.  
  101. local Button = Main2Tab:CreateButton({
  102. Name = "✅ Huge Spawner ✅",
  103. Callback = function()
  104. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  105.  
  106. local fromPet = "Cat"
  107. local toPet = "Huge Cat"
  108.  
  109. if Pets[fromPet] and Pets[toPet] then
  110. for i, v in pairs(Pets[fromPet]) do
  111. Pets[fromPet][i] = nil
  112. end
  113. for i, v in pairs(Pets[toPet]) do
  114. Pets[fromPet][i] = v
  115. end
  116. end
  117. Rayfield:Notify({
  118. Title = "Huge Spawned ✅",
  119. Content = "You enabled Correctly",
  120. Duration = 6.5,
  121. Image = 4483362458,
  122. })
  123. end,
  124. })
  125.  
  126.  
  127. local Main3Tab = Window:CreateTab("🏠 Miscellaneus", nil) -- Title, Image
  128. local Main3Section = Main3Tab:CreateSection("Main")
  129.  
  130. local Slider = Main3Tab:CreateSlider({
  131. Name = "Speed",
  132. Range = {0, 100},
  133. Increment = 10,
  134. Suffix = "Speed",
  135. CurrentValue = 10,
  136. Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  137. Callback = function(Value)
  138. local function toggleJumpSpam()
  139. jumpEnabled = not jumpEnabled
  140. if jumpEnabled then
  141. jumpToggleButton.Text = "Disable Jump Spam"
  142. while jumpEnabled do
  143. -- Wait until character and humanoid are available
  144. if player.Character and player.Character:FindFirstChild("Humanoid") then
  145. local humanoid = player.Character.Humanoid
  146. humanoid.JumpPower = jumpHeight
  147. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  148. wait(0.2) -- Adjust the wait time for how often to jump
  149. end
  150. end
  151. else
  152. jumpToggleButton.Text = "Enable Jump Spam"
  153. end
  154. end
  155. end,
  156. })
  157. local Toggle = Main3Tab:CreateToggle({
  158. Name = "Infinite Jump",
  159. CurrentValue = false,
  160. Flag = "Toggle1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  161. Callback = function(Value)
  162. -- The function that takes place when the toggle is pressed
  163. -- The variable (Value) is a boolean on whether the toggle is true or false
  164. end,
  165. })
  166.  
  167. local Main4Tab = Window:CreateTab("❌ Exit", nil) -- Title, Image
  168. local Main3Section = Main4Tab:CreateSection("Exit")
  169.  
  170. local Button = Main4Tab:CreateButton({
  171. Name = "❌ Exit ❌",
  172. Callback = function()
  173. Rayfield:Notify({
  174. Title = "Closes Correctly ✅",
  175. Content = "You Closed Correctly",
  176. Duration = 6.5,
  177. Image = 4483362458,
  178.  
  179. Rayfield:Destroy()
  180. })
  181. end,
  182. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement