I'm looking to make a chance system and I don't know how, please no confusing stuff...
This developer forum might help. :)
https://devforum.roblox.com/t/loottable-a-module-for-your-random-loot-tables-loot-cases-and-more/533493
To make a chance system you can use a variable with math.random.
local chance = math.random(1,6) -- picks a random number between 1 and 6 (you can put any minimum and maximum numbers) if number == 6 then -- if it picks a certain number -- put your code here