I was wondering if it was possible to trigger an event through the leaderboard? Example: if leaderboard = 4 points then door opens. something like that.
IntValue.Changed event is triggered every time value of this value changes, every time it changes you can check if the value is 4:
leaderstats.Points.Changed:Connect(function(value) if value == 4 then print("value changed to 4") end end)