In-experience funnels not showing

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. :slight_smile:

So, when I tested funnels I didn’t get the data back for a few days.
I did have the game on and off private mode so that could be something to do with it but.
It took a while but eventually loads, don’t worry.

Here’s some proof!

1 Like

Thank you! I’ll just have to play the waiting game

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.