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

GUI doesn't want to appear on the screen?

Asked by 5 years ago

Why doesn't it work. The rocket spawns but the GUI doesn't show.

01script.Parent.MouseButton1Click:Connect(function()
02    if script.Parent.Parent.RocketSelected.Value == 'Rocket1' then
03        game.ReplicatedStorage:WaitForChild('Rocket1')
04        local clone = game.ReplicatedStorage.Rocket1:Clone()
05        clone.Parent = workspace
06        game.StarterGui.ScreenGui.LaunchMenu.Visible = true
07        game.StarterGui.ScreenGui.Screen.Visible = false
08        game.StarterGui.ScreenGui.RocketMenu.Visible = false
09    end
10end)

1 answer

Log in to vote
2
Answered by
harstud 218 Moderation Voter
5 years ago
Edited 5 years ago

You can't access the startergui.

01script.Parent.MouseButton1Click:Connect(function(plr)
02    if script.Parent.Parent.RocketSelected.Value == 'Rocket1' then
03        game.ReplicatedStorage:WaitForChild('Rocket1')
04        local clone = game.ReplicatedStorage.Rocket1:Clone()
05        clone.Parent = workspace
06        plr = game.Players:GetPlayerFromCharacter(plr.Parent)
07        plr.PlayerGui.LaunchMenu.Visible = true
08        plr.PlayerGui.ScreenGui.Screen.Visible = false
09        plr.PlayerGui.ScreenGui.RocketMenu.Visible = false
10    end
11end)
Ad

Answer this question