Jump to content

How to block players from a place?


Turbe$Z

Recommended Posts

Just use these functions 

createColCuboid() -- or any col shape
"onColShapeHit" --event

--example( not tested )
colShape = createColCuboid( --[[ fill here with the parameters ]] )

addEventHandler( "onColShapeHit", colShape, function( hitElement, dimension )
    if not ( dimension ) then return false end 
    
    if( isElement( hitElement) and getElementType( hitElement ) == "player" ) then 
      local accName = getAccountName ( getPlayerAccount ( hitElement ) )
      if not( isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) ) then
		--teleport out of the colshape
      end 
    end 
 end )

 

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