Advertisement
zdkjaimeoficial

Untitled

Jan 30th, 2025
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.74 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "🛠️ Official Hub 🛠️ - Blox Fruits",
  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 = "Bloom", -- 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("🏠 Fruit Hunter", nil) -- Title, Image
  73. local Main2Section = Main2Tab:CreateSection("Main")
  74.  
  75. local Button = Main2Tab:CreateButton({
  76. Name = "✅ Fruit Hunter ✅",
  77. Callback = function()
  78. Rayfield:Notify({
  79. Title = "Fruit 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 = "❌ Fruit Hunter ❌",
  89. Callback = function()
  90. Rayfield:Notify({
  91. Title = "Fruit Hunter Disabled ❌",
  92. Content = "You disabled Correctly",
  93. Duration = 6.5,
  94. Image = 4483362458,
  95. })
  96. end,
  97. })
  98.  
  99. local Main3Tab = Window:CreateTab("🏠 Miscellaneus", nil) -- Title, Image
  100. local Main3Section = Main3Tab:CreateSection("Main")
  101.  
  102. local Slider = Main3Tab:CreateSlider({
  103. Name = "Speed",
  104. Range = {0, 100},
  105. Increment = 10,
  106. Suffix = "Speed",
  107. CurrentValue = 10,
  108. 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
  109. Callback = function(Value)
  110. local function toggleJumpSpam()
  111. jumpEnabled = not jumpEnabled
  112. if jumpEnabled then
  113. jumpToggleButton.Text = "Disable Jump Spam"
  114. while jumpEnabled do
  115. -- Wait until character and humanoid are available
  116. if player.Character and player.Character:FindFirstChild("Humanoid") then
  117. local humanoid = player.Character.Humanoid
  118. humanoid.JumpPower = jumpHeight
  119. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  120. wait(0.2) -- Adjust the wait time for how often to jump
  121. end
  122. end
  123. else
  124. jumpToggleButton.Text = "Enable Jump Spam"
  125. end
  126. end
  127. end,
  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 = 4483362458,
  150.  
  151. Rayfield:Destroy()
  152. })
  153. end,
  154. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement