PreRender does not work?

I’m trying the new RunService stuff, and for some reason, PreRender won’t work?

print(1) -- prints
	SelectionConnection = RunService.PreRender:Connect(function()
		print(2) -- Never prints
	end)
1 Like

The new events aren’t enabled yet. Until they go live, you’ll need to use the deprecated events (Heartbeat, Stepped).

1 Like

PreRender isn’t released as yet, same with the other new events.

1 Like

The old events should not be marked as deprecated until the new ones are actually enabled. I’ve just wasted a lot of time trying to figure out why my code isn’t working, only to find out that the events I’m using don’t fire. There’s nothing mentioned in the wiki about the new events being disabled either: RunService | Documentation - Roblox Creator Hub

11 Likes