My script is having a problem the "OccludeAll" isn't working in studio it doesn't work or ingame when I have a friend follow me it doesn't work the way I want it too... I have the script in the starterGUI and its set as a localscript is that the reason why the OccludeAll isn't working?
01 | game.Players.PlayerAdded:connect( function (p) |
02 | p.CharacterAdded:connect(c) |
03 | c:WaitForChild 'Humanoid' .NameOcclusion = "OccludeAll" |
04 | end ) |
05 |
06 | local plr = game.Players.LocalPlayer |
07 | repeat wait() until plr and plr.Character |
08 |
09 | local char = plr.Character |
10 | local head = char:WaitForChild( "Head" ) |
11 | local sg = Instance.new( "BillboardGui" , char) |
12 | sg.StudsOffset = Vector 3. new( 0 , 1.5 , 0 ) |
13 | sg.Size = UDim 2. new( 1 , 0 , 1 , 0 ) |
14 | sg.Adornee = head |
15 |
Remove the first two lines. You don't need those two events for this local script because of how it's placed. Also, the PlayerAdded event fails when using a local script. You don't need character added whatsoever.
Remove the end)
at line 4 at the way down.
Move line 3 after line 9 and change the c in the line of line 3 to char.