Answers for "for _ in roblox"

0

for _ in roblox

for _, v in pairs() do
      
end
is the same as
for i, v in pairs() do
        
end
if you dont need to use i you can use _
Posted by: Guest on August-23-2021

Browse Popular Code Answers by Language