of     1   

T20a1n14n14e5r18
#182933167Wednesday, February 03, 2016 3:22 PM GMT

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.
Lightlimn
#182933422Wednesday, February 03, 2016 3:32 PM GMT

how about you test it
NovusTheory
#182933617Wednesday, February 03, 2016 3:39 PM GMT

how about you test it [2]

    of     1