local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Trampoline-Battle-Simulator", LoadingTitle = "by ar1hurgit", LoadingSubtitle = "loading...", ConfigurationSaving = { Enabled = true, FolderName = "Trampoline-Battle-Simulator", FileName = "config" }, KeySystem = false }) local player = game.Players.LocalPlayer local mouse = player:GetMouse() local UserInputService = game:GetService("UserInputService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local WinGain = ReplicatedStorage.Event.WinGain local Train = ReplicatedStorage.Event.Train local Hatch = ReplicatedStorage.PEV.Hatch ---------------------------------------------------- -- 🔹 MISC ---------------------------------------------------- local MiscTab = Window:CreateTab("Misc", 4483362458) MiscTab:CreateButton({ Name = "Private Server TP", Callback = function() pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/veil0x14/LocalScripts/refs/heads/main/pg.lua"))() end) end }) MiscTab:CreateButton({ Name = "Server Hop", Callback = function() pcall(function() local HttpService = game:GetService("HttpService") local TeleportService = game:GetService("TeleportService") local Players = game:GetService("Players") local PlaceId = game.PlaceId local JobId = game.JobId if httprequest then local servers = {} local req = httprequest({Url = string.format("https://games.roblox.com/v1/games/%d/servers/Public?sortOrder=Desc&limit=100", PlaceId)}) local body = HttpService:JSONDecode(req.Body) if body and body.data then for i, v in next, body.data do if type(v) == "table" and tonumber(v.playing) and tonumber(v.maxPlayers) and v.playing < v.maxPlayers and v.id ~= JobId then table.insert(servers, 1, v.id) end end end if #servers > 0 then TeleportService:TeleportToPlaceInstance(PlaceId, servers[math.random(1, #servers)], Players.LocalPlayer) else if notify then notify("Serverhop", "Couldn't find a server.") else warn("Couldn't find a server.") end end end end) end }) ---------------------------------------------------- -- 🔹 WIN ---------------------------------------------------- local WinTab = Window:CreateTab("Win", 4483362458) WinTab:CreateButton({ Name = "Gain MAX Win", Callback = function() WinGain:FireServer(999999999999999999999999999) end }) ---------------------------------------------------- -- 🔹 FORCE ---------------------------------------------------- local ForceTab = Window:CreateTab("Force", 4483362458) ForceTab:CreateButton({ Name = "Train MAX", Callback = function() Train:FireServer(999999999999999999999999999) end }) ---------------------------------------------------- -- 🔹 GLITCH PETS ---------------------------------------------------- local GlitchPetsTab = Window:CreateTab("Glitch Pets", 4483362458) GlitchPetsTab:CreateButton({ Name = "Glitch Pet", Callback = function() Hatch:FireServer( "Abyss", "Soul Warden", 999999999999999999999999999999999999999 ) end })