Jump to content

getElementPosition


WiBox

Recommended Posts

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 by SSKE
Link to comment
function getposition ()
   local x, y, z = getElementPosition(localPlayer)
    outputChatBox("ur position is "..x..","..y..","..z.." LOL ",0,255,0)
end
addCommandHandler("pos", getposition)

 

Edited by DeadthStrock
  • Thanks 1
Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...