WiBox Posted May 31, 2018 Share Posted May 31, 2018 (edited) I'm trying to do: function getposition (player) outputChatBox("ur position is " .. getElementPosition(player) .. " LOL ",player,0,255,0) end addCommandHandler("pos", getposition) But it only show me the X position how I can make it so it show x, y and z ? Edited May 31, 2018 by SSKE Link to comment
Z4Zy Posted May 31, 2018 Share Posted May 31, 2018 (edited) function getposition () local x, y, z = getElementPosition(localPlayer) outputChatBox("ur position is "..x..","..y..","..z.." LOL ",0,255,0) end addCommandHandler("pos", getposition) Edited May 31, 2018 by DeadthStrock 1 Link to comment
WiBox Posted May 31, 2018 Author Share Posted May 31, 2018 (edited) oh :fp: , Thanks Attempt to concatenate global 'y' (a nil value) ,, no problem I fix it... Edited May 31, 2018 by SSKE Link to comment
WiBox Posted May 31, 2018 Author Share Posted May 31, 2018 (edited) I changed localPlayer to player and added it into function (player) np it worked anyway thanks Edited May 31, 2018 by SSKE Link to comment
Z4Zy Posted May 31, 2018 Share Posted May 31, 2018 i gave you a Client Side Code You changed it to Server Side 1 Link to comment
WiBox Posted May 31, 2018 Author Share Posted May 31, 2018 oh lol I'm using it on Server Side that why didn't work first 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