Why doesn't it work. The rocket spawns but the GUI doesn't show.
01 | script.Parent.MouseButton 1 Click:Connect( function () |
02 | if script.Parent.Parent.RocketSelected.Value = = 'Rocket1' then |
03 | game.ReplicatedStorage:WaitForChild( 'Rocket1' ) |
04 | local clone = game.ReplicatedStorage.Rocket 1 :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 |
10 | end ) |
You can't access the startergui.
01 | script.Parent.MouseButton 1 Click:Connect( function (plr) |
02 | if script.Parent.Parent.RocketSelected.Value = = 'Rocket1' then |
03 | game.ReplicatedStorage:WaitForChild( 'Rocket1' ) |
04 | local clone = game.ReplicatedStorage.Rocket 1 :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 |
11 | end ) |