I am currently in the process of making my newest game, and it requires a tutorial for you to actually start playing. This is a physical tutorial, not just a UI.
I’m currently stuck on some conditioning. I want there to be conditions so if you touch something specific you can move on, or just simply click.
I currently have this script:
local plr = game.Players.LocalPlayer
local character = plr.Character or plr.CharacterAdded:Wait()
local canMoveOn = false
local tabl = {
[1] = {
"Well, well, well. Look who we have here. A newbie!",
function()
return "click"
end
},
[2] = {
"You probably are wondering why you are here. You need to complete the tutorial!",
function()
return "click"
end
},
[2] = {
"First off, you need to claim a plot. ",
function()
return "click"
end
},
}
This is just an idea that I want to go off of. All help appreciated!