I have searched how to do this and found similar scripts but none seem to work I need it to work on a dedicated server. Any help would be most appreciated. i want only the sides to be able to see their markers srvc 1&2 are west srvc 3&4 are east. What I have if (!isDedicated) then { {_x setMarkerAlphaLocal 0} forEach ["srvc1","srvc2","srvc3","srvc4"]; waitUntil {!isNull player}; switch (side player) do { case WEST: { {_x setMarkerAlphaLocal 1} forEach ["srvc1","srvc2"]; }; case EAST: { {_x setMarkerAlphaLocal 1} forEach ["srvc3","srvc4"]; }; }; Skunk