No tengo ni idea como usar los timers.
mi pregunta es Como puedo parar y luego reanudar el timer? intente creando una Var pero no funciona
Código:
local ply = LocalPlayer()
CreateClientConVar( "afk_enabled", "0", true, false, "Enables/disables Anti-Afk" )
timer.Create("AFK", 5, 0, function()
LocalPlayer():SetEyeAngles(LocalPlayer():EyeAngles() + Angle(math.Rand(-20,20),math.Rand(-180,180),0))
end )
if GetConVar("afk_enabled"):GetInt() == 0 then
return
end