Jump to content

Little Help Here :D


Baseplate

Recommended Posts

Posted

well, I tried to make if someone respawned, he just gets invisible for some 5 secs then he gets back to normal, Code here

addEventHandler("onPlayerSpawn", root, 
function () 
local alpha = setElementAlpha(source, 0) 
setTimer(alpha, 5000, 1) 
end) 

Posted
addEventHandler ( "onPlayerSpawn", root, 
    function ( ) 
        setElementAlpha ( source, 0 ) 
        setTimer ( setElementAlpha, 5000, 1, source, 255 ) 
    end 
) 

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...