Advertisement
zhenya3126

Untitled

Mar 2nd, 2025
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.62 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "The Strongest Battlegrounds",
  5. Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
  6. LoadingTitle = "Example hub",
  7. LoadingSubtitle = "by bacon123_",
  8. Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
  9.  
  10. DisableRayfieldPrompts = false,
  11. DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
  12.  
  13. ConfigurationSaving = {
  14. Enabled = true,
  15. FolderName = nil, -- Create a custom folder for your hub/game
  16. FileName = "Strongestexample"
  17. },
  18.  
  19. Discord = {
  20. Enabled = true, -- Prompt the user to join your Discord server if their executor supports it
  21. Invite = "9GAsYuJQ", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
  22. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  23. },
  24.  
  25. KeySystem = true, -- Set this to true to use our key system
  26. KeySettings = {
  27. Title = "The Strongest Battlegrounds | Key",
  28. Subtitle = "Link in discord server",
  29. Note = "get key at discord server (discord server is https://discord.gg/9GAsYuJQ)", -- Use this to tell the user how to get a key
  30. FileName = "examplehubkey", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  31. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  32. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  33. Key = {"melovecatsidk5891285098jjjjj"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  34. }
  35. })
  36.  
  37. local MainTab = Window:CreateTab("Main", nil) -- Title, Image
  38.  
  39. Rayfield:Notify({
  40. Title = "Succesfully executed the script.",
  41. Content = "good",
  42. Duration = 5,
  43. Image = nil,
  44. })
  45. local MainSection = MainTab:CreateSection("Main")
  46.  
  47. local Button = MainTab:CreateButton({
  48. Name = "Infinite jump",
  49. Callback = function()
  50. loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Infinite%20Jump.txt"))()
  51. end,
  52. })
  53.  
  54. local Slider = MainTab:CreateSlider({
  55. Name = "Walkspeed",
  56. Range = {0, 300},
  57. Increment = 1,
  58. Suffix = "Speed",
  59. CurrentValue = 16,
  60. 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
  61. Callback = function(Value)
  62. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  63. end,
  64. })
  65.  
  66. local OtherScriptsTab = Window:CreateTab("Scripts", nil) -- Title, Image
  67. local Section = OtherScriptsTab:CreateSection("Scripts")
  68.  
  69. local Button = OtherScriptsTab:CreateButton({
  70. Name = "Infinite Yield",
  71. Callback = function()
  72. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  73. end,
  74. })
  75.  
  76. local Button = OtherScriptsTab:CreateButton({
  77. Name = "Reborn Infinite Yield",
  78. Callback = function()
  79. loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyXeleron/infiniteyield-reborn/refs/heads/scriptblox/source' or 'https://ryxeleron.github.io/storage/iyrbackup/legacy/scriptblox/source')))()
  80. end,
  81. })
  82.  
  83. local TeleportTab = Window:CreateTab("Teleports", nil) -- Title, Image
  84. local TeleportSection = TeleportTab:CreateSection("Teleports")
  85.  
  86. local Button = TeleportTab:CreateButton({
  87. Name = "Death counter",
  88. Callback = function()
  89. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-62, 36, 20338)
  90. end,
  91. })
  92.  
  93. local Button = TeleportTab:CreateButton({
  94. Name = "Baseplate",
  95. Callback = function()
  96. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1033, 30, 23123)
  97. end,
  98. })
  99.  
  100. local Button = TeleportTab:CreateButton({
  101. Name = "Atomic Clash",
  102. Callback = function()
  103. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1066, 149, 23005)
  104. end,
  105. })
  106.  
  107. local Button = TeleportTab:CreateButton({
  108. Name = "Middle of the map",
  109. Callback = function()
  110. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(150, 440, 0)
  111. end,
  112. })
  113.  
  114. local Button = TeleportTab:CreateButton({
  115. Name = "Mountain",
  116. Callback = function()
  117. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 1000, 520)
  118. end,
  119. })
  120.  
  121. local Button = TeleportTab:CreateButton({
  122. Name = "Triangle of Death",
  123. Callback = function()
  124. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(422, 599, -393)
  125. end,
  126. })
  127.  
  128. local MiscTab = Window:CreateTab("Misc", nil) -- Title, Image
  129. local Section = MiscTab:CreateSection("Misc")
  130.  
  131. local Toggle = MiscTab:CreateToggle({
  132. Name = "walkfling",
  133. CurrentValue = false,
  134. Flag = "toggleexample", -- 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
  135. Callback = function(Value)
  136. loadstring(game:HttpGet('https://raw.githubusercontent.com/Underssky/WalkFling/refs/heads/main/WFlingMainByUnderssky524'))()
  137. end,
  138. })
  139.  
  140. local Slider = MainTab:CreateSlider({
  141. Name = "Jumppower (may not always work)",
  142. Range = {0, 10000},
  143. Increment = 10,
  144. Suffix = "jump",
  145. CurrentValue = 100,
  146. Flag = "Slider2", -- 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
  147. Callback = function(Value)
  148. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
  149. end,
  150. })
  151.  
  152. local MovesetTab = Window:CreateTab("Custom Movesets", nil) -- Title, Image
  153. local MovesetsSection = MovesetTab:CreateSection("Movesets")
  154.  
  155. local Button = MovesetTab:CreateButton({
  156. Name = "Trash CanMan",
  157. Callback = function()
  158. loadstring(game:HttpGet("https://raw.githubusercontent.com/yes1nt/yes/refs/heads/main/Trashcan%20Man", true))()
  159. end,
  160. })
  161.  
  162. local Button = MovesetTab:CreateButton({
  163. Name = "KJ (use saitama)",
  164. Callback = function()
  165. loadstring(game:HttpGet("https://pastefy.app/hAqy68Po/raw"))()
  166. end,
  167. })
  168.  
  169. local Button = MovesetTab:CreateButton({
  170. Name = "Kadehub",
  171. Callback = function()
  172. getgenv().AutoReport = true
  173. loadstring(game:HttpGet("https://raw.githubusercontent.com/skibiditoiletfan2007/KadeHubRepository/main/Latest.lua"))()
  174. end,
  175. })
  176.  
  177. local Button = MovesetTab:CreateButton({
  178. Name = "Goku (use hero hunter)",
  179. Callback = function()
  180. loadstring(game:HttpGet("https://rawscripts.net/raw/The-Strongest-Battlegrounds-Hero-hunter-moveset-into-OP-goku-moveset-17468"))()
  181. end,
  182. })
  183.  
  184. local Button = MovesetTab:CreateButton({
  185. Name = "Gojo (use saitama)",
  186. Callback = function()
  187. loadstring(game:HttpGet("https://rawscripts.net/raw/The-Strongest-Battlegrounds-Gojo-tsb-script-WORKS-ON-SOLARA-18641"))()
  188. end,
  189. })
  190.  
  191. local Button = MovesetTab:CreateButton({
  192. Name = "Gojo v2 (use saitama)",
  193. Callback = function()
  194. loadstring(game:HttpGet("https://pastebin.com/raw/777Q4QDN",true))()
  195. end,
  196. })
  197.  
  198. local Button = OtherScriptsTab:CreateButton({
  199. Name = "Nameless Admin",
  200. Callback = function()
  201. loadstring(game:HttpGet('https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source'))()
  202. end,
  203. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement