У вашего броузера проблема в совместимости с HTML5
Roblox tutorial on how to make a lava kill brick it will go over how to open roblox studio, change studio layout, basic tools in the studio and basic scripting. Had nothing better to do so I thought I would see how it would go if I started making video tutorials!
script itself use in script placed inside of a part--
a = game.Workspace.Part
function onTouched(b)
if b.Parent:findFirstChild("Humanoid") then
b.Parent.Humanoid.Health = b.Parent.Humanoid.Health - 100
end
end
a.Touched:connect(onTouched)