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

How to completely remove GUIS? SOLVED

Asked by 8 years ago
teehee = script.Parent
player = game.Players.LocalPlayer

teehee.MouseButton1Down:connect(function()
    local gndr = Instance.new("StringValue",player)
    gndr.Name = "GenderPL"
    gndr.Value = "Boy"
    teehee.Parent.Parent.GenderText.TheGender.Text = "Gender: Boy"
    teehee.Parent:Remove()
end)

Figured it out through a hidden property.

game.StarterGui.ResetPlayerGuiOnSpawn = false
0
Removing GUIs could be achieved through the CoreScripts magiccube3 115 — 8y

Answer this question