Creating the main game loop
while true {
wait(1)
}function SpawnPotato(position) {
-- We will finish this in the next step!
}
while true {
wait(1)
position = Vector3.new(math.random(-100,100), 100, math.random(-100,100))
SpawnPotato(position)
}Last updated