So I’ve made a SNPC, and I want people to be able to press use on it.
I have this in init.lua, because it’s for the server, but it doesn’t work
[lua]
function ENT:Use( activator, caller )
print(“sup”);
if ( activator:IsPlayer() ) then
print(“is player!”)
end
end
[/lua]