I recently came across funnels and I wanted to include it in my My Little Pony guessing game to help out with balancing stages but it won’t show in the funnels page. This is what I see:
I don’t know if I programmed it right but the funnel events do show:
Also here is my code:
local analyticsService = game:GetService("AnalyticsService")
local httpService = game:GetService("HttpService")
local funnelSessionId = httpService:GenerateGUID()
game.Players.PlayerAdded:Connect(function(player)
local leaderstats = player:WaitForChild("leaderstats")
if leaderstats then
local stage = leaderstats:FindFirstChild("Stage")
if stage.Value == 1 then
analyticsService:LogOnboardingFunnelStepEvent(
player,
1,
"Stage 1"
)
end
stage:GetPropertyChangedSignal("Value"):Connect(function()
analyticsService:LogOnboardingFunnelStepEvent(
player,
stage.Value,
"Stage: "..stage.Value
)
end)
end
end)
I want to clarify that I wrote this code not even 24 hours ago. If I need to wait a week or something for the funnels to actually display let me know.