local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = playerGui ScreenGui.ResetOnSpawn = false local Frame = Instance.new("Frame") Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(111,0,0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0,50,0,50) Frame.Size = UDim2.new(0,150,0,210) Frame.Active = true Frame.Draggable = true local Title = Instance.new("TextLabel") Title.Parent = Frame Title.BackgroundColor3 = Color3.fromRGB(0,0,0) Title.Size = UDim2.new(0,150,0,30) Title.Text = "r00zgui vINF" Title.TextColor3 = Color3.fromRGB(127,0,0) Title.TextScaled = true Title.BorderSizePixel = 0 -- DECAL BUTTON local DecalButton = Instance.new("TextButton") DecalButton.Parent = Frame DecalButton.BackgroundColor3 = Color3.fromRGB(0,0,0) DecalButton.Position = UDim2.new(0,5,0,45) DecalButton.Size = UDim2.new(0,65,0,30) DecalButton.Text = "DecalSpam" DecalButton.TextColor3 = Color3.fromRGB(120,0,0) DecalButton.BorderSizePixel = 0 -- SKY BUTTON local SkyButton = Instance.new("TextButton") SkyButton.Parent = Frame SkyButton.BackgroundColor3 = Color3.fromRGB(0,0,0) SkyButton.Position = UDim2.new(0,80,0,45) SkyButton.Size = UDim2.new(0,60,0,30) SkyButton.Text = "Sky" SkyButton.TextColor3 = Color3.fromRGB(120,0,0) SkyButton.BorderSizePixel = 0 -- PARTICLE BUTTON local ParticleButton = Instance.new("TextButton") ParticleButton.Parent = Frame ParticleButton.BackgroundColor3 = Color3.fromRGB(0,0,0) ParticleButton.Position = UDim2.new(0,5,0,85) ParticleButton.Size = UDim2.new(0,65,0,30) ParticleButton.Text = "Particles" ParticleButton.TextColor3 = Color3.fromRGB(120,0,0) ParticleButton.BorderSizePixel = 0 -- MESSAGE BUTTON local MessageButton = Instance.new("TextButton") MessageButton.Parent = Frame MessageButton.BackgroundColor3 = Color3.fromRGB(0,0,0) MessageButton.Position = UDim2.new(0,80,0,85) MessageButton.Size = UDim2.new(0,60,0,30) MessageButton.Text = "Message" MessageButton.TextColor3 = Color3.fromRGB(120,0,0) MessageButton.BorderSizePixel = 0 -- HINT BUTTON local HintButton = Instance.new("TextButton") HintButton.Parent = Frame HintButton.BackgroundColor3 = Color3.fromRGB(0,0,0) HintButton.Position = UDim2.new(0,40,0,125) HintButton.Size = UDim2.new(0,70,0,30) HintButton.Text = "Hint" HintButton.TextColor3 = Color3.fromRGB(120,0,0) HintButton.BorderSizePixel = 0 local ID = "82354143681093" SkyButton.MouseButton1Click:Connect(function() local s = Instance.new("Sky") s.SkyboxBk = "http://www.roblox.com/asset/?id="..ID s.SkyboxDn = "http://www.roblox.com/asset/?id="..ID s.SkyboxFt = "http://www.roblox.com/asset/?id="..ID s.SkyboxLf = "http://www.roblox.com/asset/?id="..ID s.SkyboxRt = "http://www.roblox.com/asset/?id="..ID s.SkyboxUp = "http://www.roblox.com/asset/?id="..ID s.Parent = game.Lighting end) DecalButton.MouseButton1Click:Connect(function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("Part") then for _,face in pairs(Enum.NormalId:GetEnumItems()) do local d = Instance.new("Decal") d.Texture = "http://www.roblox.com/asset/?id="..ID d.Face = face d.Parent = v end end end end) ParticleButton.MouseButton1Click:Connect(function() local character = player.Character or player.CharacterAdded:Wait() local torso = character:FindFirstChild("Torso") or character:FindFirstChild("UpperTorso") if torso then local pe = Instance.new("ParticleEmitter") pe.Texture = "rbxassetid://"..ID pe.Parent = torso pe.VelocitySpread = 5 end end) MessageButton.MouseButton1Click:Connect(function() local m = Instance.new("Message") m.Text = "hacked by team r00zkidd" m.Parent = workspace wait(2) m:Destroy() end) HintButton.MouseButton1Click:Connect(function() local h = Instance.new("Hint") h.Text = "THIS GAME HAS BEEN HACKED BY TEAM R00ZKIDD" h.Parent = workspace wait(3) h:Destroy() end)