Search found 1 match

by Mridul121561
Wed Mar 16, 2022 8:47 am
Forum: Support and Development
Topic: Error
Replies: 1
Views: 3188

Error

Okay so here's the code: function love.load() player = {} player.x = 400 player.y = 400 player.speed = 3 block = {} block.x = math.random(00, 200) block.y = math.random(00, 200) block.speed = math.random(100, 200) player.radius = 25 end function love.update(dt) if love.keyboard.isDown("w")...