Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
- local Window = Rayfield:CreateWindow({
- Name = "The Strongest Battlegrounds",
- Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
- LoadingTitle = "Example hub",
- LoadingSubtitle = "by bacon123_",
- Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
- DisableRayfieldPrompts = false,
- DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
- ConfigurationSaving = {
- Enabled = true,
- FolderName = nil, -- Create a custom folder for your hub/game
- FileName = "Strongestexample"
- },
- Discord = {
- Enabled = true, -- Prompt the user to join your Discord server if their executor supports it
- Invite = "9GAsYuJQ", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
- RememberJoins = true -- Set this to false to make them join the discord every time they load it up
- },
- KeySystem = true, -- Set this to true to use our key system
- KeySettings = {
- Title = "The Strongest Battlegrounds | Key",
- Subtitle = "Link in discord server",
- Note = "get key at discord server (discord server is https://discord.gg/9GAsYuJQ)", -- Use this to tell the user how to get a key
- FileName = "examplehubkey", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
- SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
- GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
- 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")
- }
- })
- local MainTab = Window:CreateTab("Main", nil) -- Title, Image
- Rayfield:Notify({
- Title = "Succesfully executed the script.",
- Content = "good",
- Duration = 5,
- Image = nil,
- })
- local MainSection = MainTab:CreateSection("Main")
- local Button = MainTab:CreateButton({
- Name = "Infinite jump",
- Callback = function()
- loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Infinite%20Jump.txt"))()
- end,
- })
- local Slider = MainTab:CreateSlider({
- Name = "Walkspeed",
- Range = {0, 300},
- Increment = 1,
- Suffix = "Speed",
- CurrentValue = 16,
- 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
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
- end,
- })
- local OtherScriptsTab = Window:CreateTab("Scripts", nil) -- Title, Image
- local Section = OtherScriptsTab:CreateSection("Scripts")
- local Button = OtherScriptsTab:CreateButton({
- Name = "Infinite Yield",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end,
- })
- local Button = OtherScriptsTab:CreateButton({
- Name = "Reborn Infinite Yield",
- Callback = function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyXeleron/infiniteyield-reborn/refs/heads/scriptblox/source' or 'https://ryxeleron.github.io/storage/iyrbackup/legacy/scriptblox/source')))()
- end,
- })
- local TeleportTab = Window:CreateTab("Teleports", nil) -- Title, Image
- local TeleportSection = TeleportTab:CreateSection("Teleports")
- local Button = TeleportTab:CreateButton({
- Name = "Death counter",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-62, 36, 20338)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Baseplate",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1033, 30, 23123)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Atomic Clash",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1066, 149, 23005)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Middle of the map",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(150, 440, 0)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Mountain",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 1000, 520)
- end,
- })
- local Button = TeleportTab:CreateButton({
- Name = "Triangle of Death",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(422, 599, -393)
- end,
- })
- local MiscTab = Window:CreateTab("Misc", nil) -- Title, Image
- local Section = MiscTab:CreateSection("Misc")
- local Toggle = MiscTab:CreateToggle({
- Name = "walkfling",
- CurrentValue = false,
- 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
- Callback = function(Value)
- loadstring(game:HttpGet('https://raw.githubusercontent.com/Underssky/WalkFling/refs/heads/main/WFlingMainByUnderssky524'))()
- end,
- })
- local Slider = MainTab:CreateSlider({
- Name = "Jumppower (may not always work)",
- Range = {0, 10000},
- Increment = 10,
- Suffix = "jump",
- CurrentValue = 100,
- 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
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
- end,
- })
- local MovesetTab = Window:CreateTab("Custom Movesets", nil) -- Title, Image
- local MovesetsSection = MovesetTab:CreateSection("Movesets")
- local Button = MovesetTab:CreateButton({
- Name = "Trash CanMan",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/yes1nt/yes/refs/heads/main/Trashcan%20Man", true))()
- end,
- })
- local Button = MovesetTab:CreateButton({
- Name = "KJ (use saitama)",
- Callback = function()
- loadstring(game:HttpGet("https://pastefy.app/hAqy68Po/raw"))()
- end,
- })
- local Button = MovesetTab:CreateButton({
- Name = "Kadehub",
- Callback = function()
- getgenv().AutoReport = true
- loadstring(game:HttpGet("https://raw.githubusercontent.com/skibiditoiletfan2007/KadeHubRepository/main/Latest.lua"))()
- end,
- })
- local Button = MovesetTab:CreateButton({
- Name = "Goku (use hero hunter)",
- Callback = function()
- loadstring(game:HttpGet("https://rawscripts.net/raw/The-Strongest-Battlegrounds-Hero-hunter-moveset-into-OP-goku-moveset-17468"))()
- end,
- })
- local Button = MovesetTab:CreateButton({
- Name = "Gojo (use saitama)",
- Callback = function()
- loadstring(game:HttpGet("https://rawscripts.net/raw/The-Strongest-Battlegrounds-Gojo-tsb-script-WORKS-ON-SOLARA-18641"))()
- end,
- })
- local Button = MovesetTab:CreateButton({
- Name = "Gojo v2 (use saitama)",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/777Q4QDN",true))()
- end,
- })
- local Button = OtherScriptsTab:CreateButton({
- Name = "Nameless Admin",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source'))()
- end,
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement