Quick question, does Debris:AddItem use remove() or Destroy() on an object after the time has passed?
And side question if you know, if you call math.randomseed(tick()) will this randomise all math.random in every script if you do this in only one script? e.g I have 3 scripts and call math.random from each one, but use math.randomseed(tick()) from only one script? Thanks!
since remove() is depracated and that roblox does not want people using depracated stuff i think its safe to assume Destroy()
and for your second question, no, math.randomseed() only changes the psudorandomizer's seed for every thread, so you have to run randomseed for all scripts