So i have a figthing game with a gui class selection screen, the gui appears when a player connects but when a player dies, the gui wont appear again. How do I make it appear? My current code:
Menu = script.Menu game.Players.PlayerAdded:connect(function(player) local MenuClone = Menu:Clone() MenuClone.Parent = player.PlayerGui end)
Menu is the name of the ScreenGui.
local Menu = script.Menu game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function() local MenuClone = Menu:Clone() MenuClone.Parent = player.PlayerGui end) end)