How do I Limit the distance to view a billboard GUI ? The GUI is above a players head and I don't want people to see a load of writing over there screen when a player is over the other side of the map.. do I need to change the UDim position or something? Do I need a script for this? Any questions ill be happy to answer
Use Magnitude
Put this in the brick: - -Change GUI to your GUI's name distance = 20 --If a player is closer than X studs it will show while true do players = game.Players:GetPlayers() for i=1,#players do char = players[i].Character if (char.Torso.Position - script.Parent.Position).magnitude < distance+1 then script.Parent.GUI.Visible = true else script.Parent.GUI.Visible = false end end