Hello everyone! I run a darkrp server, and I would like to figure out how to make it so that if a player is being whipped, they can't be frozen?
if v.whipped then
ULib.tsayError( calling_ply, v:Nick() .. " is being whipped!", true )
v:Unlock()
v.frozen = nil
ulx.clearExclusive( v )
end
that's what we've tried. But it doesn't work!