Here is the script
~~~~~~~~~~~~~~~~~
local Message
Instance.new("Message")
Message.text = "Welcome to City Life Version 0.67!"
Message.Parent = StarterGui
wait(5)
Print:Remove()
~~~~~~~~~~~~~~~~~
Thumbs down all you like but first give a reason please.
I'm guessing you'd like it so only the joining player sees it.
game.Players.PlayerAdded:connect(function(p) m = Instance.new("Message", p.PlayerGui) m.Text = "Welcome to City Life Version 0.67!" wait(5) m:Destroy() end)
Put this in a script in StarterGui.
local version = "0.67" --just change this to change the version # in the message local Message = Instance.new("Message", script.Parent) --create a message in Message.Text = "Welcome to City Life Version "..version.."!" --Text is capitalized wait(5) --wait 5 seconds Message:remove() --remove the message.
Locked by adark and TheMyrco
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?