Brackeys / MultiplayerFPS-Tutorial

A video series on making a multiplayer first-person shooter in Unity.
The Unlicense
654 stars 287 forks source link

SimpleActivatorMenu not working #36

Open Unity8Me opened 3 years ago

Unity8Me commented 3 years ago

When I try to fix the simple activator script, it says 'GUIText has been removed. Use UI.Text instead.' And then when I try it it says another thing.

GCPins commented 3 years ago

When I try to fix the simple activator script, it says 'GUIText has been removed. Use UI.Text instead.' And then when I try it it says another thing.

Put using UnityEngine.UI; at the top of your script, then replace "GUIText" with Text.

Source: Unity Forum