概要
robloxでassistantやってみた。
練習問題やってみた。
練習問題
湯婆婆を表示せよ。
写真
サンプルコード
local player = game.Players.LocalPlayer
local PlayerGui = player:WaitForChild("PlayerGui")
local gui = PlayerGui:WaitForChild("ScreenGui")
gui.TextButton.MouseButton1Click:Connect(function()
local res = ""
local Name = gui.TextBox.Text
res ..= "フン。".. Name .. "というのかい。贅沢な名だねぇ。\n"
local Len = string.len(Name)
local Seed = os.time()
math.randomseed(Seed)
local rand = math.random(Len / 3) -1
local cnt = 3 * rand + 1
local newName = string.sub(Name, cnt, cnt + 2)
res ..= "今からお前の名前は".. newName .. "だ。いいかい、" .. newName .."だよ。分かったら返事をするんだ、" .. newName .. "!!"
gui.TextBox.Text = res
end)
以上。