A local script can't access the contents of server storage so how else could I disable the billboard gui by clicking a button?
My current script:
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | game.ServerStorage.OverheadGui.Enabled = false |
3 | game.ServerStorage.OverheadPlayerGui.Enabled = false |
4 | end ) |