Answered by
5 years ago Edited 5 years ago
First of all, you can't do anything with guis in a server script (to my knowledge), so go back to a local script.
Secondly, StarterGui replicated to PlayerGui, which is in the Player. This means any changes made to the StarterGui in a script will do NOTHING. You need to access the PlayerGui and change it through there. To do so:
01 | local Player = game:GetService( 'Players' ).LocalPlayer |
02 | local PlayerGui = Player:WaitForChild( 'PlayerGui' ) |
04 | PlayerGui.Menu.Main_Menu.Menu_Background.Play_Button.Button.MouseButton 1 Click:Connect( function () |
06 | PlayerGui.Menu.Sound 2. Looped = false |
08 | PlayerGui.Menu.Sound 2. Playing = false |
TLDR: In scripts, access guis through PlayerGui, NOT StarterGui.
Let me know if you have any questions or if my provided code isn't working.