What do you want to achieve? i want to fix my random picker, keeps getting number instead of object in a folder
What is the issue?
would print normally if name is a number, if it’s name is like “Hit” or anything that isn’t a number it would bug
What solutions have you tried so far? i tried searching for people with the same issue but failed
local GetSounds = Sounds:GetChildren()
local Randomized = math.random(1, #Sounds:GetChildren())
local PickedSound = Sounds[Randomized]
print(PickedSound)