Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local lMove
- local trys = 500
- local interval = 1
- hook.Add("Think", "DC_TfaMove2", function()
- if interval >= CurTime() then return end
- local len = LocalPlayer():GetVelocity():LengthSqr()
- if lMove ~= nil then
- if lMove == len then
- trys = trys - 1
- if trys <= 0 then
- netstream.Start("dc_afkcheck")
- interval = interval + 5
- end
- else
- trys = 240
- end
- end
- if (len ~= 0) and (lMove == 0) then
- lMove = len
- end
- interval = CurTime() + 1
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement