script.Parent.MouseButton1Click:connect(function() local info = script.Parent.Parent.Infobar local storage = game.ReplicatedStorage local a = storage.Accepted local d = storage.Declined local appname = game.Players.LocalPlayer.Name local app1 = script.Parent.Parent:FindFirstChild("FillOut") local app2 = a:FindFirstChild(appname) local app3 = d:FindFirstChild(appname) if app2 == nil and app3 == nil and app1 == nil then info.Text = "Your Application Hasn't Been Read Yet!" wait(2) info.Text = "" elseif app2 == true then info.Text = "Your Application Has Been Accepted Congragulations!" wait(2) info.Text = "" elseif app3 == true then info.Text = "Your Application Has Been Declined Sorry, Try Again Next Time!" wait(2) info.Text = "" else info.Text = "Your Application Hasn't Been Sent Yet!" wait(2) info.Text = "" end end)
For some reason, I don't know why but this at the end doesn't change the text in the info bar to "Your Application Hasn't Been Sent Yet!" It doesn't give me an error either, this is in a local script.