-- CATNAP HUB INSANO 😈 local player = game.Players.LocalPlayer local Players = game:GetService("Players") local UIS = game:GetService("UserInputService") -- RAYFIELD local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "CATNAP HUB 😈", LoadingTitle = "MODO INSANO", LoadingSubtitle = "c00lgui vibes...", ConfigurationSaving = { Enabled = false } }) local Tab = Window:CreateTab("INSANO", 4483362458) -- FUNÇÕES local function getChar() return player.Character or player.CharacterAdded:Wait() end local function getHum() return getChar():WaitForChild("Humanoid") end local function getHRP() return getChar():WaitForChild("HumanoidRootPart") end -- ⚑ SPEED Tab:CreateSlider({ Name = "Velocidade Insana", Range = {16, 200}, Increment = 5, CurrentValue = 16, Callback = function(v) getHum().WalkSpeed = v end, }) -- 🦘 JUMP Tab:CreateSlider({ Name = "Pulo Insano", Range = {50, 200}, Increment = 5, CurrentValue = 50, Callback = function(v) getHum().JumpPower = v end, }) -- 😈 MENSAGEM MALUCA Tab:CreateButton({ Name = "Mensagem Troll", Callback = function() local gui = Instance.new("ScreenGui", player.PlayerGui) local txt = Instance.new("TextLabel", gui) txt.Size = UDim2.new(1,0,0,100) txt.Position = UDim2.new(0,0,0.4,0) txt.Text = "YOU ARE AN IDIOT 😈" txt.TextScaled = true txt.TextColor3 = Color3.new(1,0,0) txt.BackgroundTransparency = 1 game:GetService("Debris"):AddItem(gui, 2) end, }) -- πŸ•ΈοΈ TEIA Tab:CreateButton({ Name = "Teia", Callback = function() local mouse = player:GetMouse() local hrp = getHRP() local alvo = mouse.Hit.Position local bv = Instance.new("BodyVelocity") bv.MaxForce = Vector3.new(1e6,1e6,1e6) bv.Velocity = (alvo - hrp.Position).Unit * 120 bv.Parent = hrp game:GetService("Debris"):AddItem(bv, 0.3) end, }) -- πŸ‘€ MORPH Tab:CreateInput({ Name = "Morph (Nome)", PlaceholderText = "Digite o nome", Callback = function(name) local target = Players:FindFirstChild(name) if target then local desc = Players:GetHumanoidDescriptionFromUserId(target.UserId) getHum():ApplyDescription(desc) end end, }) -- 😈 TELA BUG Tab:CreateButton({ Name = "Tela Bugada", Callback = function() for i = 1,10 do local gui = Instance.new("ScreenGui", player.PlayerGui) local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(1,0,1,0) frame.BackgroundColor3 = Color3.new(math.random(),0,0) frame.BackgroundTransparency = 0.5 game:GetService("Debris"):AddItem(gui, 0.1) task.wait(0.1) end end, }) -- 😈 JUMP SCARY UIS.JumpRequest:Connect(function() local gui = Instance.new("ScreenGui", player.PlayerGui) local txt = Instance.new("TextLabel", gui) txt.Size = UDim2.new(1,0,0,100) txt.Position = UDim2.new(0,0,0.4,0) txt.Text = "😈" txt.TextScaled = true txt.BackgroundTransparency = 1 game:GetService("Debris"):AddItem(gui, 0.3) end) -- NOTIFICAÇÃO Rayfield:Notify({ Title = "CATNAP HUB 😈", Content = "INSANO CARREGADO", Duration = 4 })