Raild3x
Raild3x
Currently, if you want to do passthrough events from one component to another, the current expected way is to use string indices in the props table like so: ```lua local...
Currently if you give a scope, but not a state to watch, the Observer errors out telling you that your scope is missing. This led me on a goose chase...
I have the following code being used to make a level bar increase: ```lua RunService.RenderStepped:Connect(function(dt) local targetLevel = peek(level) if peek(displayLevel) < targetLevel then displayProgress:set(1) -- instantly fill bar if...