I want to make it so where if someone says "RUN NAME: " and it pops up the color background is another color called blue, if not then its normal I’m trying to see if there is certain info in the message to do this.
It simply won’t find the info right
SERVER SCRIPT
radioFolder.RunPlayer.OnServerEvent:Connect(function(PlayerRunne, ArrestsVal)
local FrameTo_output = script.Parent.RadioFrame:FindFirstChild("Dispatch")
FrameTo_output.LineSix.Text = FrameTo_output.LineFive.Text
FrameTo_output.LineFive.Text = FrameTo_output.LineFour.Text
FrameTo_output.LineFour.Text = FrameTo_output.LineThree.Text
FrameTo_output.LineThree.Text = FrameTo_output.LineTwo.Text
wait()
FrameTo_output.LineOne.Text = "DISPATCH: "..PlayerRunne.Name.." was Arrested "..ArrestsVal.." times!"
if FrameTo_output.LineOne.Text == (string.split("Dispatch: ")[3]) then
FrameTo_output.LineOne.BackgroundColor3 = Color3.fromRGB(57, 141, 177)
end
end)```