xeon17 Posted August 21, 2014 Share Posted August 21, 2014 What i'm doing wrong ? local keys = getBoundKeys ( crouch ) if (keys == fire ) then Link to comment
Castillo Posted August 21, 2014 Share Posted August 21, 2014 You forgot to use the quotes before and after crouch and fire. local keys = getBoundKeys ( "crouch" ) if ( keys == "fire" ) then Also, getBoundKeys returns a table, so your "if" statement won't work. Link to comment
xeon17 Posted August 21, 2014 Author Share Posted August 21, 2014 So can i use this function to kick players who use custom gta controls? Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now