I have this script that holds an image over the player, but i noticed that other players can't see the image. How do i make it so other players can see the image??
PHP Code:
//#CLIENTSIDE
function onCreated()
{
showImg(200, "block.png", (player.x), (player.y));
setTimer(0.05);
}
function onTimeOut()
{
showImg(200, "block.png", (player.x), (player.y));
setTimer(0.05);
}