Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why does the GUI isn't a valid member of replicated storage ?

Asked by 4 years ago
01local player = game.Players.LocalPlayer
02local playergui = player:WaitForChild("PlayerGui")
03local RubleGUI = game.ReplicatedStorage.RubleGui
04while true do
05if not playergui:FindFirstChild(RubleGUI.name) then
06         wait(5)
07      local clone = RubleGUI:Clone()
08       clone.parent = playergui
09       wait(3)
10        clone:Destroy()
11end
12end

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 ?

0
Double check spelling QuantumPlasmic 84 — 4y

1 answer

Log in to vote
2
Answered by 4 years ago
Edited 4 years ago

:WaitForChild('obj')

Try using waitforchild, maybe it's not the solution but try it. It may not have loaded in yet!

CHEERS

Ad

Answer this question