Pasos para implementar el Scripts de Roblox:
- Agrega al Workspace un Script
- Borra el código “Hola Mundo”.
- Pega el siguiente Script:
1 2 3 4 5 6 7 8 9 | function onTouched(part) local humanoid = part.Parent:FindFirstChild("Humanoid") if humanoid then humanoid.Health = 0 end end script.Parent.Touched:Connect(onTouched) |