0 Members and 4 Guests are viewing this topic.
I didn't want to start a new topic so I'll just reply here, how do I control it so certain groups can noclip through the world? By default Admins and one or 2 other groups can noclip through but Moderators can't. Is it even possible?
elseif ply:IsAdmin() or ply:IsSuperAdmin() or ply:IsUserGroup( "trusted" ) or ply:IsUserGroup( "vip" ) or ply:IsUserGroup( "elite" ) then
You should be able to edit line 31 of the sh_uclip.lua file to include the usergroups you want to be able to noclip through the world.Here's mine:Code: [Select]elseif ply:IsAdmin() or ply:IsSuperAdmin() or ply:IsUserGroup( "trusted" ) or ply:IsUserGroup( "vip" ) or ply:IsUserGroup( "elite" ) thenHope that helps.