-- Rayfield local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Catnap Hub ☠️", LoadingTitle = "OP System", LoadingSubtitle = "Characters Mode", ConfigurationSaving = { Enabled = false } }) local Tab = Window:CreateTab("Main", 4483362458) local player = game.Players.LocalPlayer local backpack = player:WaitForChild("Backpack") -------------------------------------------------- -- πŸ— COMIDA REALISTA + MENSAGEM -------------------------------------------------- local food = Instance.new("Tool") food.Name = "πŸ— Frango" food.RequiresHandle = true local handle = Instance.new("Part") handle.Name = "Handle" handle.Size = Vector3.new(1,1,1) handle.Color = Color3.fromRGB(255,200,100) handle.Parent = food food.Parent = backpack food.Activated:Connect(function() local char = player.Character if not char then return end local hum = char:FindFirstChild("Humanoid") if hum then hum.Health = math.min(hum.Health + 50, hum.MaxHealth) end -- mensagem local gui = Instance.new("ScreenGui", game.CoreGui) local text = Instance.new("TextLabel", gui) text.Size = UDim2.new(1,0,0.2,0) text.Position = UDim2.new(0,0,0.4,0) text.BackgroundColor3 = Color3.new(0,0,0) text.TextColor3 = Color3.new(1,1,0) text.TextScaled = true text.Text = "FRANGO CHIQUEM JOHN πŸ—" task.wait(2) gui:Destroy() end) -------------------------------------------------- -- βš”οΈ ESPADA REALISTA -------------------------------------------------- local sword = Instance.new("Tool") sword.Name = "βš”οΈ Espada" sword.RequiresHandle = true local handle2 = Instance.new("Part") handle2.Name = "Handle" handle2.Size = Vector3.new(0.4,4,0.4) handle2.Material = Enum.Material.Metal handle2.Parent = sword local blade = Instance.new("Part") blade.Size = Vector3.new(0.3,5,0.3) blade.Material = Enum.Material.Metal blade.Parent = sword blade.CFrame = handle2.CFrame * CFrame.new(0,4,0) local weld = Instance.new("WeldConstraint", handle2) weld.Part0 = handle2 weld.Part1 = blade sword.Parent = backpack -------------------------------------------------- -- πŸ“± CELULAR -------------------------------------------------- local phone = Instance.new("Tool") phone.Name = "πŸ“± Celular" phone.RequiresHandle = true local phonePart = Instance.new("Part") phonePart.Name = "Handle" phonePart.Size = Vector3.new(1,2,0.2) phonePart.Color = Color3.fromRGB(0,0,0) phonePart.Parent = phone phone.Parent = backpack phone.Activated:Connect(function() local gui = Instance.new("ScreenGui", game.CoreGui) local text = Instance.new("TextLabel", gui) text.Size = UDim2.new(1,0,1,0) text.BackgroundColor3 = Color3.new(0,0,0) text.TextColor3 = Color3.new(1,0,0) text.TextScaled = true text.Text = "YOU DIE ☠️" task.wait(2) gui:Destroy() end) -------------------------------------------------- -- 😈 SISTEMA DE PERSONAGENS OP -------------------------------------------------- local currentMode = "Normal" local function transform(color, name) local char = player.Character if not char then return end for _,v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.Color = color v.Material = Enum.Material.Neon end end currentMode = name end -- BOTΓ•ES Tab:CreateButton({ Name = "John Doe πŸ‘€", Callback = function() transform(Color3.fromRGB(0,0,0), "JohnDoe") end }) Tab:CreateButton({ Name = "c00lkidd 😎", Callback = function() transform(Color3.fromRGB(0,255,0), "Cool") end }) Tab:CreateButton({ Name = "1x1x1x1 ☠️", Callback = function() transform(Color3.fromRGB(255,0,0), "1x1") end }) Tab:CreateButton({ Name = "Shedletsky πŸ”₯", Callback = function() transform(Color3.fromRGB(255,140,0), "Shed") end }) -------------------------------------------------- -- πŸ’₯ PODERES OP POR PERSONAGEM -------------------------------------------------- game:GetService("RunService").Heartbeat:Connect(function() local char = player.Character if not char then return end local hum = char:FindFirstChild("Humanoid") local root = char:FindFirstChild("HumanoidRootPart") if not hum or not root then return end if currentMode == "JohnDoe" then hum.WalkSpeed = 50 local aura = Instance.new("Fire") aura.Parent = root game:GetService("Debris"):AddItem(aura,0.2) elseif currentMode == "Cool" then hum.WalkSpeed = 70 elseif currentMode == "1x1" then hum.WalkSpeed = 40 local boom = Instance.new("Explosion") boom.Position = root.Position boom.BlastRadius = 5 boom.Parent = workspace elseif currentMode == "Shed" then hum.WalkSpeed = 60 local spark = Instance.new("Sparkles", root) game:GetService("Debris"):AddItem(spark,0.2) else hum.WalkSpeed = 16 end end) -------------------------------------------------- Rayfield:Notify({ Title = "Catnap Hub", Content = "Modo OP ativado 😈πŸ”₯", Duration = 5 })