im trying to make a billboard gui pop up when a prompt is triggered but the it doesnt…
both prints works so im not sure whats the problem is and ive tried to enable the billboard gui manually and it showed up but it doesnt show up auto when the prompt is triggered
the Teleporter adornee is HitBox and it shows when i enable it manually


local prompt = script.Parent
local billboard = game:GetService("StarterGui").Teleproter
local function onPromptTriggered(player)
prompt.Enabled = false
print("works1")
billboard.Enabled = true
print("works2")
wait(5)
prompt.Enabled = true
end
prompt.Triggered:Connect(onPromptTriggered)