local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local MinimizeButton = Instance.new("TextButton") local MVSDButton = Instance.new("TextButton") local MVSD2Button = Instance.new("TextButton") local UICorner = Instance.new("UICorner") local Title = Instance.new("TextLabel") local RevertButton = Instance.new("TextButton") Title.Parent = Frame Title.BackgroundTransparency = 1 Title.Size = UDim2.new(0, 100, 0, 25) Title.Position = UDim2.new(0, 10, 0, 5) Title.Text = "Silent MVSD" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 18 Title.Font = Enum.Font.GothamBold Title.TextXAlignment = Enum.TextXAlignment.Left ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.new(0, 0, 0) Frame.Size = UDim2.new(0, 280, 0, 180) Frame.Position = UDim2.new(0.5, -140, 0.5, -90) Frame.Active = true Frame.Draggable = true UICorner.Parent = Frame UICorner.CornerRadius = UDim.new(0, 20) MinimizeButton.Parent = Frame MinimizeButton.Text = "-" MinimizeButton.Size = UDim2.new(0, 25, 0, 25) MinimizeButton.Position = UDim2.new(1, -30, 0, 5) MinimizeButton.MouseButton1Click:Connect(function() Frame:Destroy() end) MVSDButton.Parent = Frame MVSDButton.Text = "Silent HitBox (4)" MVSDButton.Size = UDim2.new(0, 150, 0, 35) MVSDButton.Position = UDim2.new(0.5, -75, 0.3, 0) MVSDButton.MouseButton1Click:Connect(function() _G.HeadSize = 4 _G.Disabled = true game:GetService('RunService').RenderStepped:connect(function() if _G.Disabled then for i,v in next, game:GetService('Players'):GetPlayers() do if v.Name ~= game:GetService('Players').LocalPlayer.Name then pcall(function() v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize) v.Character.HumanoidRootPart.CanCollide = false end) end end end end) end) MVSD2Button.Parent = Frame MVSD2Button.Text = "Rage HitBox (5)" MVSD2Button.Size = UDim2.new(0, 150, 0, 35) MVSD2Button.Position = UDim2.new(0.5, -75, 0.5, 0) MVSD2Button.MouseButton1Click:Connect(function() _G.HeadSize = 5 _G.Disabled = true game:GetService('RunService').RenderStepped:connect(function() if _G.Disabled then for i,v in next, game:GetService('Players'):GetPlayers() do if v.Name ~= game:GetService('Players').LocalPlayer.Name then pcall(function() v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize) v.Character.HumanoidRootPart.CanCollide = false end) end end end end) end) RevertButton.Parent = Frame RevertButton.Text = "Unhook" RevertButton.Size = UDim2.new(0, 150, 0, 35) RevertButton.Position = UDim2.new(0.5, -75, -0.12, 145) RevertButton.MouseButton1Click:Connect(function() _G.HeadSize = 1 _G.Disabled = true game:GetService('RunService').RenderStepped:connect(function() if _G.Disabled then for i,v in next, game:GetService('Players'):GetPlayers() do if v.Name ~= game:GetService('Players').LocalPlayer.Name then pcall(function() v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize) v.Character.HumanoidRootPart.CanCollide = false end) end end end end) end)