local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local HRP = Character:WaitForChild("HumanoidRootPart") local broscreen = LocalPlayer.PlayerGui:WaitForChild("broscreen") local MuteLogic = game:GetService("ReplicatedFirst"):WaitForChild("Sound"):WaitForChild("MuteLogic") local hook hook = hookmetamethod(game, "__newindex", newcclosure(function(self, key, value) if not checkcaller() then if self == broscreen and key == "Enabled" and value == true then return end if self == HRP and key == "Velocity" and value.Y > 100 then return end if self == MuteLogic and key == "Value" and value > MuteLogic.Value then return end end return hook(self, key, value) end)) print("proto disabled")