local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()

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_a_random_bacon",
   Theme = "Default", -- Check https://[Log in to view URL]

   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 = "Youtubeexamplehub"
   },

   Discord = {
      Enabled = true, -- Prompt the user to join your Discord server if their executor supports it
      Invite = "Ncen8Bjz7y", -- 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 = "(discord server is https://[Log in to view URL]", -- 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://[Log in to view URL]"))()
   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://[Log in to view URL]'))()
   end,
})

local Button = OtherScriptsTab:CreateButton({
   Name = "Reborn Infinite Yield",
   Callback = function()
        loadstring(game:HttpGet(('https://[Log in to view URL]' or 'https://[Log in to view URL]')))()
   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://[Log in to view URL]'))()
   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://[Log in to view URL]", true))()
   end,
})

local Button = MovesetTab:CreateButton({
   Name = "KJ (use saitama)",
   Callback = function()
        loadstring(game:HttpGet("https://[Log in to view URL]"))()
   end,
})

local Button = MovesetTab:CreateButton({
   Name = "Kadehub",
   Callback = function()
        getgenv().AutoReport = true
        loadstring(game:HttpGet("https://[Log in to view URL]"))()
   end,
})

local Button = MovesetTab:CreateButton({
   Name = "Goku (use hero hunter)",
   Callback = function()
        loadstring(game:HttpGet("https://[Log in to view URL]"))()
   end,
})

local Button = MovesetTab:CreateButton({
   Name = "Gojo (use saitama)",
   Callback = function()
        loadstring(game:HttpGet("https://[Log in to view URL]"))()
   end,
})

local Button = MovesetTab:CreateButton({
   Name = "Gojo v2 (use saitama)",
   Callback = function()
        loadstring(game:HttpGet("https://[Log in to view URL]",true))()
   end,
})

local Button = OtherScriptsTab:CreateButton({
   Name = "Nameless Admin",
   Callback = function()
        loadstring(game:HttpGet('https://[Log in to view URL]'))()
   end,
})

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: