-- CATNAP HUB (Estilo Rayfield) local player = game.Players.LocalPlayer -- CARREGANDO RAYFIELD local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() -- JANELA local Window = Rayfield:CreateWindow({ Name = "CATNAP HUB", LoadingTitle = "CATNAP HUB", LoadingSubtitle = "by Você", ConfigurationSaving = { Enabled = false } }) -- ABA PLAYER local Tab = Window:CreateTab("Player", 4483362458) -- PEGAR HUMANOID local function getHumanoid() local char = player.Character or player.CharacterAdded:Wait() return char:WaitForChild("Humanoid") end -- SPEED Tab:CreateButton({ Name = "Speed", Callback = function() local hum = getHumanoid() hum.WalkSpeed = 50 end, }) -- AUTO JUMP local autoJump = false Tab:CreateToggle({ Name = "Auto Jump", CurrentValue = false, Callback = function(Value) autoJump = Value end, }) game:GetService("UserInputService").JumpRequest:Connect(function() if autoJump then local hum = getHumanoid() hum:ChangeState(Enum.HumanoidStateType.Jumping) end end) -- NOTIFICAÇÃO Rayfield:Notify({ Title = "CATNAP HUB", Content = "Carregado com sucesso!", Duration = 4 })