当触摸功能触发时,如何制作一个显示字幕的脚本?

时间:2018-07-11 13:55:30

标签: roblox

如果有人碰到砖块然后GUI会显示字幕几秒钟并进入屏幕的下方,如何制作脚本? (如看完电影的学分)

1 个答案:

答案 0 :(得分:0)

我知道创建此内容的第一部分,但我不知道GUI部分。对于第一部分,我认为您应该执行以下操作……

local Part = script.Parent -- This would define the part that is to be touched.

function onTouch(Brick) -- Starts the onTouch function which sends us "Brick", the triggering object.

local Player = Brick.Parent:findFirstChild("Humanoid") -- Finds Humanoid in Brick.

    if (Player ~= nil) then -- Checks if the player is a real Player.

    print("Hello World"")

    end

end

如果您知道 print(“ Hello World!”)行,请使用GUI中的代码替换。

致谢,谢!