所以我很无聊,因此决定从事Roblox游戏。我目前正在使用“ Story Roblox Creator挑战”模板,但我不知道如何使其按我的意愿去做...
这是到目前为止的代码。由于某种原因,它没有同时显示两个问题,而是说“ PlayerName”而不是我的用户名
,
local name01 = storyMaker:GetInput("What Is Your Name?")
local gender01 = storyMaker;GetInput ("Are You A Boy Or A Girl?")
local story = "My name is " .. name01 .. ", /n "I Was Just Your Average" .. gender01 ". "
答案 0 :(得分:1)
在变量gender01中,storyMaker和GetInput之间有一个分号。 此外,“我只是你的平均水平”不在字符串中, 并且您将变量放入字符串中,它将返回“gender01”而不是变量的值,并且有一个句点不在字符串中。 代码应该是:
local name01 = storyMaker:GetInput("What Is Your Name?")
local gender01 = storyMaker:GetInput("Are You A Boy Or A Girl?")
local story = "My name is " .. name01 .. ", /n I Was Just Your Average".. gender01.."."
我不是 roblox lua 的专家,但无论如何它可能会有所帮助。