local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "killer2fuckz gui" gui.ResetOnSpawn = false local frame = Instance.new("Frame") frame.Name = "MainFrame" frame.Size = UDim2.new(0, 280, 0, 330) frame.Position = UDim2.new(0, 20, 0, 20) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.BorderColor3 = Color3.fromRGB(255, 0, 0) frame.BorderSizePixel = 3 frame.Active = true frame.Draggable = true frame.Parent = gui local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0, 10) local title = Instance.new("TextLabel", frame) title.Text = "killer2fuckz gui" title.Size = UDim2.new(1, 0, 0, 40) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundColor3 = Color3.fromRGB(10, 10, 10) title.BorderColor3 = Color3.fromRGB(255, 0, 0) title.BorderSizePixel = 1 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 20 local function createButton(name, text, y) local button = Instance.new("TextButton", frame) button.Name = name button.Text = text button.Size = UDim2.new(0.9, 0, 0, 40) button.Position = UDim2.new(0.05, 0, 0, y) button.BackgroundColor3 = Color3.fromRGB(10, 10, 10) button.BorderColor3 = Color3.fromRGB(255, 0, 0) button.BorderSizePixel = 2 button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Font = Enum.Font.SourceSansBold button.TextSize = 18 local corner = Instance.new("UICorner", button) corner.CornerRadius = UDim.new(0, 8) return button end local skyboxBtn = createButton("SkyboxBtn", "Change Skybox", 50) local decalBtn = createButton("DecalBtn", "Spam Decals", 100) local particleBtn = createButton("ParticleBtn", "Particle Effect", 150) local musicBtn = createButton("MusicBtn", "Play Music", 200) local messageBtn = createButton("MsgBtn", "Send Message", 250) skyboxBtn.MouseButton1Click:Connect(function() local s = Instance.new("Sky") s.Name = "Sky" s.SkyboxBk = "http://www.roblox.com/asset/?id=134023177450989" s.SkyboxDn = s.SkyboxBk s.SkyboxFt = s.SkyboxBk s.SkyboxLf = s.SkyboxBk s.SkyboxRt = s.SkyboxBk s.SkyboxUp = s.SkyboxBk s.Parent = game.Lighting game.Lighting.TimeOfDay = 12 end) decalBtn.MouseButton1Click:Connect(function() local function exPro(root) for _, v in pairs(root:GetChildren()) do if v:IsA("Decal") and v.Texture ~= "http://www.roblox.com/asset/?id=134023177450989" then v:Destroy() elseif v:IsA("BasePart") then v.Material = Enum.Material.Plastic v.Transparency = 0 for _, face in pairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal", v) decal.Texture = "http://www.roblox.com/asset/?id=134023177450989" decal.Face = face end end exPro(v) end end exPro(workspace) end) particleBtn.MouseButton1Click:Connect(function() local IMAGE_ID = "rbxassetid://134023177450989" for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") then local emitter = Instance.new("ParticleEmitter") emitter.Texture = IMAGE_ID emitter.Rate = 10 emitter.Lifetime = NumberRange.new(2, 5) emitter.Speed = NumberRange.new(2, 5) emitter.SpreadAngle = Vector2.new(360, 360) emitter.Size = NumberSequence.new(2, 2) emitter.Parent = part end end end) musicBtn.MouseButton1Click:Connect(function() local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://87694750844457" sound.Volume = 10 sound.PlaybackSpeed = 0.316 sound.Looped = true sound:Play() end) messageBtn.MouseButton1Click:Connect(function() local msg = Instance.new("Message", workspace) msg.Text = "killer2fuckz: i dont give a fuckz" wait(5) msg:Destroy() local hint = Instance.new("Hint", workspace) hint.Text = "fuckzzzzzzzz" end)