game.Players.ChildAdded:connect(function(player) --When they enter the game. if player:IsInGroup(8004208) then --Change the number to your group's ID. if player.PlayerGui:findFirstChild("DialogChat") == nil then --Change GroupGui to the name of your Gui. local newGui = script.DialogChat:clone() --Change GroupGui to the name of your Gui and put the Gui in this script. newGui.Parent = player.PlayerGui end end player.Changed:connect(function(prop) --When they respawn. if prop == "Character" then if player:IsInGroup(8004208) then --Change the number to your group's ID. if player.PlayerGui:findFirstChild("DialogChat") == nil then --Change GroupGui to the name of your Gui. local newGui = script.DialogChat:clone() --Change GroupGui to the name of your Gui and put the Gui in this script. newGui.Parent = player.PlayerGui end end end end) end)