Why does the GUI isn't a valid member of replicated storage ?
01 | local player = game.Players.LocalPlayer |
02 | local playergui = player:WaitForChild( "PlayerGui" ) |
03 | local RubleGUI = game.ReplicatedStorage.RubleGui |
05 | if not playergui:FindFirstChild(RubleGUI.name) then |
07 | local clone = RubleGUI:Clone() |
08 | clone.parent = playergui |
Im making a simple script where every 5 seconds a GUI pops up , but instead it says that 21:04:10.086 - RubleGui is not a valid member of ReplicatedStorage . I have the ScreenGui clearly inside the replicated storage . Can anybody help ?