local mt = getrawmetatable(game)
local backup
backup = hookfunction(mt.__newindex, newcclosure(function(self, key, value)
if key == "WalkSpeed" and value < 75 then
value = 75
end
return backup(self, key, value)
end))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: