Advertisement
zdkjaimeoficial

Untitled

Jan 29th, 2025
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.66 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "🛠️ Official Hub 🛠️",
  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 = nil,
  45. })
  46.  
  47. local Button = MainTab:CreateButton({
  48. Name = "✅ Trade Scam ✅",
  49. Callback = function()
  50. Rayfield:Notify({
  51. Title = "Trade Scam Enabled ✅",
  52. Content = "You enabled Correctly",
  53. Duration = 6.5,
  54. Image = nil,
  55. })
  56. end,
  57. })
  58.  
  59. local Button = MainTab:CreateButton({
  60. Name = "❌ Trade Scam ❌",
  61. Callback = function()
  62. Rayfield:Notify({
  63. Title = "Trade Scam Disabled ❌",
  64. Content = "You disabled Correctly",
  65. Duration = 6.5,
  66. Image = nil,
  67. })
  68. end,
  69. })
  70.  
  71. local Main2Tab = Window:CreateTab("🏠 HugeHunter", nil) -- Title, Image
  72. local Main2Section = Main2Tab:CreateSection("Main")
  73.  
  74. local Button = Main2Tab:CreateButton({
  75. Name = "✅ Huge Hunter ✅",
  76. Callback = function()
  77. Rayfield:Notify({
  78. Title = "Huge Hunter Enabled ✅",
  79. Content = "You enabled Correctly",
  80. Duration = 6.5,
  81. Image = nil,
  82. })
  83. end,
  84. })
  85.  
  86. local Button = Main2Tab:CreateButton({
  87. Name = "❌ Huge hunter ❌",
  88. Callback = function()
  89. Rayfield:Notify({
  90. Title = "Huge Hunter Disabled ❌",
  91. Content = "You disabled Correctly",
  92. Duration = 6.5,
  93. Image = nil,
  94. })
  95. end,
  96. })
  97.  
  98. local Main3Tab = Window:CreateTab("🏠 Miscellaneus", nil) -- Title, Image
  99. local Main3Section = Main3Tab:CreateSection("Main")
  100.  
  101. local Slider = Main3Tab:CreateSlider({
  102. Name = "Speed",
  103. Range = {0, 100},
  104. Increment = 10,
  105. Suffix = "Speed",
  106. CurrentValue = 10,
  107. 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
  108. Callback = function(Value)
  109. local function toggleJumpSpam()
  110. jumpEnabled = not jumpEnabled
  111. if jumpEnabled then
  112. jumpToggleButton.Text = "Disable Jump Spam"
  113. while jumpEnabled do
  114. -- Wait until character and humanoid are available
  115. if player.Character and player.Character:FindFirstChild("Humanoid") then
  116. local humanoid = player.Character.Humanoid
  117. humanoid.JumpPower = jumpHeight
  118. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  119. wait(0.2) -- Adjust the wait time for how often to jump
  120. end
  121. end
  122. else
  123. jumpToggleButton.Text = "Enable Jump Spam"
  124. end
  125. end
  126. end,
  127. })
  128.  
  129. local Toggle = Main3Tab:CreateToggle({
  130. Name = "Infinite Jump",
  131. CurrentValue = false,
  132. 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
  133. Callback = function(Value)
  134. -- The function that takes place when the toggle is pressed
  135. -- The variable (Value) is a boolean on whether the toggle is true or false
  136. end,
  137. })
  138.  
  139. local Main4Tab = Window:CreateTab("❌ Exit", nil) -- Title, Image
  140. local Main3Section = Main4Tab:CreateSection("Exit")
  141.  
  142. local Button = Main4Tab:CreateButton({
  143. Name = "❌ Exit ❌",
  144. Callback = function()
  145. Rayfield:Notify({
  146. Title = "Closes Correctly ✅",
  147. Content = "You Closed Correctly",
  148. Duration = 6.5,
  149. Image = nil,
  150.  
  151. Rayfield:Destroy()
  152. })
  153. end,
  154. })
  155.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement