of     1   

StevenROBLOXianAyala
#182934211Wednesday, February 03, 2016 4:02 PM GMT

function starterMessage(message, location) for i = 1,string.len(message) do location.Text = string.upper(string.sub(message,1,i)) wait(0.1) end end while true do wait(1) starterMessage("hhh", game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.msg) end
StevenROBLOXianAyala
#182934315Wednesday, February 03, 2016 4:05 PM GMT

B
StevenROBLOXianAyala
#182934595Wednesday, February 03, 2016 4:15 PM GMT

B
AviatorEU
#182934763Wednesday, February 03, 2016 4:21 PM GMT

local api = Instance.new("RemoteFunction",game.ServerStorage) function starterMessage(message, location) for i = 1,string.len(message) do location.Text = string.upper(string.sub(message,1,i)) wait(0.1) end end api:OnServerInvoke(starterMessage("hhh", game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.msg)) while true do wait(1) api:InvokeServer() end
AviatorEU
#182934803Wednesday, February 03, 2016 4:22 PM GMT

local api = Instance.new("RemoteEvent",game.ServerStorage) function starterMessage(message, location) for i = 1,string.len(message) do location.Text = string.upper(string.sub(message,1,i)) wait(0.1) end end api:OnServerEvent(starterMessage("hhh", game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.msg)) while true do wait(1) api:FireServer() end revised you have to use remoteevents or remotefunctions because the client cannot change values as such.
StevenROBLOXianAyala
#182934976Wednesday, February 03, 2016 4:27 PM GMT

neither of those work.
TimeTicks
#182934997Wednesday, February 03, 2016 4:28 PM GMT

He never said anything about using FE. You should have to use RE's for this simple thing. Also, replace while true do with while wait() do. also you have to use WaitForChild(location) to make sure it finds the object.
TimeTicks
#182935007Wednesday, February 03, 2016 4:28 PM GMT

shouldnt*
StevenROBLOXianAyala
#182935079Wednesday, February 03, 2016 4:31 PM GMT

local c = game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame:WaitForChild("msg") function starterMessage(message, location) for i = 1,string.len(message) do location.Text = string.upper(string.sub(message,1,i)) wait(0.1) end end while wait() do starterMessage("hhh", c) end
TimeTicks
#182935236Wednesday, February 03, 2016 4:37 PM GMT

local player = game.Players.LocalPlayer local gui = player.PlayerGui:WaitForChild("ScreenGui").Frame.TextLabel function starterMessage(msg, label) for i = 1,string.len(msg) do label.Text = string.upper(string.sub(msg,1,i)) wait(0.1) end end while wait(0.5) do starterMessage("hhh", gui) end

    of     1