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

Script not requiring correctly?

Asked by 5 years ago
tip = require(game.ServerScriptService:FindFirstChild("TrelloAPI"))

local bID = tip:GetBoardID("Ban appeals")
local lID = tip:GetListID("Pending",bID)

script.Parent.MouseButton1Click:Connect(function(player)
    tip:AddCard("Feedback Sent.","Sent by: "..player.Name,lID,"","top")
end)

Every time I run the script, it says this error I don't know how to go about this.

0
FindFirstChild returned false then. Only use FindFirstChild for its return condition. If you need to wait for that module, use WaitForChild. pidgey 548 — 5y

Answer this question