Light runnerrrrrrrrrrrrrrrr

So ive been making an obby runner game, idk what to add do it so can someone tell me

2 Likes

The game is very buggy on mobile: the right and left buttons are switched, once you die in the void, the button which would guide you into that direction seems to be stuck, meaning that you die everytime unless you press the button to go into the opposite direction (again, if you let go of this, you’re gonna die)

2 Likes

Yeahhhh… uhh
I am soon replacing the buttons with my custom buttons which probably will fix ur issue

Yeah im researching how to swap them

Why not just use the thumbstick?
I like the concept of this game, but it needs work. (ex: decoration, variety of obstacles)

1 Like

Well, the game makes u only able to move left or right, and jump

I made the game a week ago, even tho it says september 2024 the game was in jan 2025

That makes more sense now

There’s 2 ways I could think of doing this:

  1. If the light is a direct replacement of the player’s character, then allow for all player movement, but just always set the character’s X or Z, depending on what direction you have it going.
    local pos = character.PrimaryPart.Position
    -- if your character moves along the X axis, do this:
    character.PrimaryPart.Position = Vector3.new(targetXPosition, pos.Y, pos.Z)
    -- if your character moves along the Z axis, do this:
    character.PrimaryPart.Position = Vector3.new(pos.X, pos.Y, targetZPosition)
    
  2. If it isn’t a replacement of the character, you could put the player’s actual character in a box under the map, and use the humanoid’s MoveDirection property.
1 Like

how about i just make the player move however it wants with thumbstick, but it will always move foward and can never go back. ( a bit confusing)
it will allow mobile players to edit their speed on turns tho which gives them a slight advantage
which is good cuz my friends are mobile

1 Like

Looks like it will be fun.

Right now, there is no reason to be able to move left or right. :wink:

Would be nice to be able to speed it up at will (but have a minimum speed).

Upcoming obstacles will be useful for moving left and right
Took me a while to understand what u meant

No.

Thanks

1 Like