This is my first code review. Today we’ll be looking at a code I used for securing games.
What I don’t like is the code is too messy.
If you know any ways of securing code please reply down below.
local YU = game:GetService("Players")
local UI = YU.LocalPlayer
repeat wait() until UI.Character
while true do
wait(3.5)
if UI.Character.Humanoid.WalkSpeed ~= 25 then
UI:Kick("Unknown Command")
wait(1)
end
end
----
----
-----