local Players = game:GetService("Players")
local PlayerJoinedSound = ""
local PlayerLeftSound = ""
local Sound = game.Workspace.Sound
local TextBox = script.Parent
local Frame = script.Parent.Parent
function onPlayerAdded(player)
Sound.SoundId =("rbxassetid://"..PlayerJoinedSound)
Sound:Play()
Frame.Visible = true
Frame.Style = "ChatGreen"
TextBox.Text = player.Name.." joined the game"
wait(5)
TextBox.Text = ""
Frame.Visible = false
end
function onPlayerRemoving(player)
Sound.SoundId =("rbxassetid://"..PlayerLeftSound)
Sound:Play()
Frame.Visible = true
Frame.Style = "ChatRed"
TextBox.Text = player.Name.." left the game"
wait(5)
TextBox.Text = ""
Frame.Visible = false
end
Players.PlayerAdded:connect(onPlayerAdded)
Players.PlayerRemoved:connect(onPlayerRemoving)
It is stored in a textbox stored in a frame stored in a screengui in startergui. |