I don't understand why this isn't submitting to the StringValue in ReplicatedStorage:
local DefenderProof = game.ReplicatedStorage.UADefenderProof --local hint = script.Parent.Parent.Parent.Parent.NewsGui.News.Text local CourtR = script.Parent.Parent.Parent.Parent.Parent:WaitForChild("CourtGui").CourtBase local function SubmitProofD() print("submitted") DefenderProof.Value = script.Parent.Parent.URL.Text end script.Parent.MouseButton1Click:connect(SubmitProofD)
Prosecutor one doesn't submit either-but it's exactly the same except some strings of text are different.
Very strange :|
By looking at your hierarchy (thanks for posting that), you've accidentally stuck in one too many .Parent
s on Line 4
, so your WaitForChild
is waiting indefinitely for something that is not and will not be there :P