Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why doesn't text show up in Trello but no errors show up in the output?

Asked by 5 years ago
Edited 5 years ago

So I made a Trello Application and it worked partially.

local part = script.Parent.Parent.Parent.ScrollingFrame
local data = "User Application:\n"..part.q1.Text.."\n"..part.q1.TextBox.Text.."\n"..part.q2.Text.."\n"..part.q2.TextBox.Text.."\n"..part.q3.Text.."\n"..part.q3.TextBox.Text.."\n"..part.q4.Text.."\n"..part.q4.TextBox.Text.."\n"..part.q5.Text.."\n"..part.q5.TextBox.Text
local remote = game:GetService("ReplicatedStorage").subApp
script.Parent.MouseButton1Click:Connect(function()
    script.Parent.Parent.Parent.mod:TweenPosition(UDim2.new(1.034,0,-1,0))
    script.Parent.Parent.Parent.modinfo:TweenPosition(UDim2.new(1.034,0,-1.5,0))
    script.Parent.Parent.Parent.line:TweenPosition(UDim2.new(1.034,0,-1,0))
    script.Parent.Parent.Parent.Parent.Parent.Main:TweenPosition(UDim2.new(-3.35,0,0,0))
    script.Parent.Parent.Parent.Parent.End.subapp.LocalScript.Disabled=false
    remote:FireServer(data)
end)

There are no errors showing up meaning it's a semantic error. The "part.q1(2,3,4,5).Text" shows up in Trello because it's a TextLabel but the "part.q1(2,3,4,5).TextBox.Text does not show in Trello and it's fill with test answers.

https://imgur.com/a/lSRrQnz

Answer this question