ID:176753
 
how do i make it where a player cant move for a while? like if they hit
You can edit the Move() proc. Add:
if(cantmove == 1)
return
else
..()
in somewhere should do it.
-DogMan