Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. local bomb = Instance.new("Part")
  2. local explo = Instance.new("Explosion")
  3. bomb.Parent = workspace
  4. for i,v in pairs(game.Players:GetChildren()) do
  5. bomb.Position = v.Character.Head.Position + Vector3.new(0,3,0)
  6. bomb.Touched:Connect(function()
  7. explo.Position = bomb.Position
  8.  
  9.  
  10. end)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement