So I made a texture scroller script, I made it use the offset thing.
I want to make it so I don’t need to spam like “9999999” and all that because that will end in some point.
I want to make it so it will continue for ever without doing that thing.
That is the only way that I know of how to do that.
local offset = script.Parent
for scroll = 0, 999999999999999999999999999, .1 do
offset.OffsetStudsV = scroll
wait()
end
Any help would be appreciated!
I’m also a beginner