local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "sxlnxcy hub", LoadingTitle = "LOADING UTILITIES...", LoadingSubtitle = "WELCOME", ConfigurationSaving = { Enabled = false }, KeySystem = false }) local MainTab = Window:CreateTab("-> MAIN", 4483362458) local lp = game.Players.LocalPlayer _G.TargetSpeed = 16 MainTab:CreateSection("[ CHARACTER ]") MainTab:CreateSlider({ Name = "WalkSpeed Bypass", Range = {16, 300}, Increment = 1, CurrentValue = 16, Callback = function(Value) _G.TargetSpeed = Value end, }) MainTab:CreateSection("[ TELEPORTS ]") MainTab:CreateButton({ Name = "Teleport to Secret Platform", Callback = function() local target = workspace.World.Platform.Content:FindFirstChild("Secret") local hrp = lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") if target and hrp then hrp.CFrame = target:GetPivot() * CFrame.new(0, 3, 0) Rayfield:Notify({ Title = "Success", Content = "Teleported to Secret", Duration = 2 }) end end, }) -- ========================================== -- [ BACKGROUND LOOPS ] -- ========================================== task.spawn(function() while true do pcall(function() if lp.Character and lp.Character:FindFirstChild("Humanoid") then lp.Character.Humanoid.WalkSpeed = _G.TargetSpeed end end) task.wait(0.1) end end) Rayfield:Notify({ Title = "Hub Loaded", Content = "Speed and TP active.", Duration = 3 })