Advertisement
RobloxTurtorials

Instant Kill | Roblox Studio 2021

Feb 11th, 2021
4,919
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. script.Parent.Touched:Connect(function(object)
  2.     if game.Players:GetPlayerFromCharacter(object.Parent) then
  3.         if object.Parent.Humanoid.Health > 0 then
  4.             object.Parent.Humanoid.Health = 0
  5.         end
  6.     end
  7. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement