script.Parent.FocusLost:Connect(function()
local text = script.Parent.Text
local rs = game:GetService("ReplicatedStorage"):WaitForChild("RPFL"):FindFirstChild("Officiating"):WaitForChild("Scoreboard").HomeName
if text then
rs:FireServer(text)
end
end)
server
local RS = game:GetService("ReplicatedStorage")
local EventFolder = RS:WaitForChild("RPFL"):WaitForChild("Officiating")
local TeamProperties = RS:WaitForChild("TeamProperties")
EventFolder.Scoreboard.HomeName.OnServerEvent:Connect(function(text)
TeamProperties:WaitForChild("HName").Value = tostring(text)
end)