Garry's Mod Wiki

math.mod

  number math.mod( number base, number modulator )

Description

We advise against using this. It may be changed or removed in a future update. This is removed in Lua versions later than what GMod is currently using. You should use the % operator or math.fmod instead.

Returns the modulus of the specified values. Same as math.fmod.

Arguments

1 number base
The base value
2 number modulator
Modulator

Returns

1 number
The calculated modulus