Hi guys i need help for infinite road, i watch maybe 10 videos but I could not. Please help me.
My road name " Yol1" road length “50” my sphere name “top”. Please send script.
I highly doubt anybody is going to do this for you. Attempt it, show us what you’ve done and maybe we can help you. I seriously doubt anybody is just going to make a script for you.
1 Like
With one step at a time, a great place to start in Unity is here: https://unity3d.com/learn/beginner-tutorials
Personally, I think there’s a lot to be gained by mixing in the top 2 sections on this page, as well: Learn game development w/ Unity | Courses & tutorials in game design, VR, AR, & Real-time 3D | Unity Learn
Otherwise, I agree completely with @Brathnann .
This fits the detailed requirements you’ve laid out:
private string roadName = "Yol1";
private int roadLength = 50;
private string sphereName = "top";
void Update()
{
Debug.Log("Imagine an infinite road...... which doesn't make sense when the road has a length of " + roadLength.ToString() + " but roll with me here. Done!");
}