音が流れない場合、再生を一時停止してもう一度再生してみて下さい。
ツール 
画像
Korek21
23回再生
Roblox Scripting Tutorial - #1

In this beginner roblox scripting tutorial video I teach you how to make a Kill Brick in Roblox Studio, this means that whenever a player touches said part, they die.

script:


script.Parent.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
hit.Parent.Humanoid.Health=0
end
end)


#roblox #tutorial #robloxstudio

コメント