Loading...
「ツール」は右上に移動しました。
利用したサーバー: wtserver1
2いいね 23 views回再生

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

コメント