04-20-2025, 06:14 AM
just wondering, is this the best way to write this? it works sure, but the code i think could be better but idrk how. instead of asking AI i'm asking here because you guys probably have decent lua knowledge.
Code:
-- Caproos
os.execute("title Rbx PG Acc Finder")
print("PGable Rbx Acc Finder - by Caproos")
print("Min UserID: ")
local min = io.read()
print("Max UserID: ")
local max = io.read()
print("Num of Accs")
local num = io.read()
for i = 1, tonumber(num) do
local g = math.random(tonumber(min), tonumber(max))
print("["..tostring(i).."]: https://www.roblox.com/users/"..tostring(g).."/profile")
end
print("finished")