Garry's Mod

Garry's Mod

rp_downtown_catguy
ThatCatGuy  [ontwikkelaar] 3 sep 2022 om 12:18
Event Arena Permanent Clip Removel.
If you don't like the player clip on the Event arena entrance and you use that area for basing etc and don't want to have to toggle each map restart you can add this code into a server file in lua/autorun/server/ and it will remove the playerclip all togeather on map startup.


// Below will disable the playerclips on the event arena on map start. hook.Add("InitPostEntity", "event_arena_playerclip", function() for k,v in pairs(ents.FindByName("event_arena_playerclip")) do v:Remove() end end)