of     1   

frriend
#183598048Sunday, February 14, 2016 5:38 PM GMT

local function getStats() local gui = workspace:FindFirstChild(plr.Name).Head:WaitForChild("PlrInfo") local creds = plr.Game_Values.Player_Credits.Value local team = plr.TeamColor local level = plr.Game_Values.Player_Level.Value if team == BrickColor.new("Bright blue") then team = "Blue" elseif team == BrickColor.new("Bright red") then team = "Red" else team = "Neutral" end if gui then gui.Main.Info.Text = "[" .. plr.Name .. "] - " .. creds .. " Credits \n " .. team .. " Team \n Level " .. level end end ////////////////////////////////////////////////// That was my function. Is there any way to change view distance to 20 studs? just cause billboard guis blow up at far distances away.. i just need to make it so its only visible to others within 20 studs. Thanks!
Alex645ca
#183598136Sunday, February 14, 2016 5:39 PM GMT

There's some odd properties of billboard guis and other gui objects grouped in, most of them are booleans, I forget which combination does what you want but there is one (try various combinations)
frriend
#183600413Sunday, February 14, 2016 6:10 PM GMT

But is there one that does what i need it to do? Cause i know that the health gui has a view distance but thats in Humanoid.

    of     1