-- 0vGUI v1 local player = game.Players.LocalPlayer local pgui = player:WaitForChild("PlayerGui") local sg = Instance.new("ScreenGui") sg.Name = "0vGUI" sg.ResetOnSpawn = false sg.Parent = pgui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 240, 0, 210) frame.Position = UDim2.new(0.5, -120, 0.5, -105) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.BorderSizePixel = 3 frame.BorderColor3 = Color3.fromRGB(220, 0, 0) frame.Parent = sg local uis = game:GetService("UserInputService") local dragging, dragStart, startPos frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) frame.InputChanged:Connect(function(input) if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then local delta = input.Position - dragStart frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 38) title.BackgroundColor3 = Color3.fromRGB(35, 0, 0) title.Text = "0vGUI v1" title.TextColor3 = Color3.fromRGB(255, 0, 0) title.Font = Enum.Font.Code title.TextSize = 26 title.Parent = frame local function btn(text, y, func) local b = Instance.new("TextButton") b.Size = UDim2.new(0.92, 0, 0, 42) b.Position = UDim2.new(0.04, 0, 0, y) b.BackgroundColor3 = Color3.fromRGB(55, 0, 0) b.BorderColor3 = Color3.fromRGB(160, 0, 0) b.BorderSizePixel = 2 b.Text = text b.TextColor3 = Color3.fromRGB(255, 90, 90) b.Font = Enum.Font.Code b.TextSize = 18 b.Parent = frame b.MouseButton1Click:Connect(func) end btn("SPAM DECAL 84048592029077", 48, function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") or v:IsA("MeshPart") or v:IsA("UnionOperation") then local d1 = Instance.new("Decal") d1.Texture = "rbxassetid://84048592029077" d1.Face = Enum.NormalId.Top d1.Parent = v local d2 = Instance.new("Decal") d2.Texture = "rbxassetid://84048592029077" d2.Face = Enum.NormalId.Bottom d2.Parent = v end end end) btn("SPAM DECAL 88433261593170", 100, function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") or v:IsA("MeshPart") or v:IsA("UnionOperation") then local d1 = Instance.new("Decal") d1.Texture = "rbxassetid://88433261593170" d1.Face = Enum.NormalId.Front d1.Parent = v local d2 = Instance.new("Decal") d2.Texture = "rbxassetid://88433261593170" d2.Face = Enum.NormalId.Back d2.Parent = v end end end) btn("BLAST MUSIC 104879348278763", 152, function() local s = Instance.new("Sound") s.SoundId = "rbxassetid://104879348278763" s.Volume = 10 s.Looped = true s.Parent = workspace s:Play() end)