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

PUDBOTCodeEdit (ScreenGUI) is not a valid member of Part. How do I fix this error?

Asked by 6 years ago

So I'm trying to make a programmable robot in ROBLOX that can do fun things but I come across this error and I do not know how to solve it.

01local localadmin = {"GiveMeYourPudding"}
02 
03function OpenAccess()
04    local PBCE = script.Parent.PUDBOTCodeEdit
05    PBCE.Parent = game.StarterGui
06end
07 
08script.Parent.ClickDetector.MouseClick:Connect(function(plr)
09    for i,v in pairs(localadmin) do
10        if v == plr.Name then
11            OpenAccess()
12        end
13    end
14end)

This is a link to the picture of my Explorer (everything that is unnecessary to this I put into Lighting): https://cdn.discordapp.com/attachments/502963941979324435/520985404447653901/unknown.png

0
My objective is if your username is on localadmin, the PUDBOTCodeEdit GUI comes up onto your screen. GiveMeYourPudding 64 — 6y

1 answer

Log in to vote
1
Answered by 6 years ago
1function OpenAccess()
2    local PBCE = script.Parent.PUDBOTCodeEdit
3    PBCE.Parent = game.StarterGui
4end

Don't parent the gui in the game.StarterGui, clone and parent it in the playergui

1function OpenAccess(plr)
2    local PBCE = script.Parent.PUDBOTCodeEdit:Clone()
3    PBCE.Parent = plr.PlayerGui
4end

Like that.

Ad

Answer this question