local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local rawmt = getrawmetatable(game) setreadonly(rawmt, false) local oldIndex = rawmt.__index rawmt.__index = newcclosure(function(self, key) if key == "WalkSpeed" then if typeof(self) == "Instance" and self:IsA("Humanoid") and self.Parent and self.Parent == LocalPlayer.Character then return 16 end end return oldIndex(self, key) end) setreadonly(rawmt, true)