I need help with a script, that will be allowed to use only by "Policja" ACL group, and it sets player's vehicle maxVelocity to 0.1, but i need the script to change it back to normal velocity when i want. The command needs to look like this: /commandName thePlayer maxVelocity. So i need some help because i don't even know Lua, aaand i used wiki and looked in some scripts too. Maybe you guys, the Lua masters out there will help me out? Huge thanks.
 
	Here's what I've done.
 
	function emp ( thePlayer, theVehicle ) 
	   local theVehicle = getPedOccupiedVehicle ( thePlayer ) 
	     then setVehicleHandling(v, "maxVelocity", 0.1) 
	end
 
	addCommandHandler ( string turnoff, function emp, [bool restricted = false, bool caseSensitive = true] )