Advertisement
ZKiller

Kamikazew [Roblox]

Jun 27th, 2018
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.33 KB | None | 0 0
  1. wait(1)
  2. local w = Instance.new("Weld",game.Players.LocalPlayer.Character)
  3. w.Part0 = game.Players.LocalPlayer.Character.Torso
  4. w.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  5. w.C1 = CFrame.new(.3,1.6,0) * CFrame.fromEulerAnglesXYZ(math.rad(180),math.rad(0),math.rad(-60))
  6. local w = Instance.new("Weld",game.Players.LocalPlayer.Character)
  7. w.Part0 = game.Players.LocalPlayer.Character.Torso
  8. w.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  9. w.C1 = CFrame.new(-.3,1.6,0) * CFrame.fromEulerAnglesXYZ(math.rad(-180),math.rad(0),math.rad(60))
  10.  
  11. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 22
  12.  
  13. local bomb = Instance.new("Part",game.Players.LocalPlayer.Character)
  14. bomb.CanCollide = false
  15. bomb.Size = Vector3.new(2,2,2)
  16. local bombMesh = Instance.new("SpecialMesh",bomb)
  17. bombMesh.MeshId = "rbxasset://fonts/timebomb.mesh"
  18. bombMesh.TextureId = "rbxasset://textures/bombtex.png"
  19. local bombWeld = Instance.new("Weld",bomb)
  20. bombWeld.Part0 = game.Players.LocalPlayer.Character.Torso
  21. bombWeld.Part1 = bomb
  22. bombWeld.C1 = CFrame.new(2.5,0,-1.5) * CFrame.fromEulerAnglesXYZ(math.rad(90),math.rad(0),math.rad(0))
  23.  
  24. local bomb = Instance.new("Part",game.Players.LocalPlayer.Character)
  25. bomb.CanCollide = false
  26. bomb.Size = Vector3.new(2,2,2)
  27. local bombMesh = Instance.new("SpecialMesh",bomb)
  28. bombMesh.MeshId = "rbxasset://fonts/timebomb.mesh"
  29. bombMesh.TextureId = "rbxasset://textures/bombtex.png"
  30. local bombWeld = Instance.new("Weld",bomb)
  31. bombWeld.Part0 = game.Players.LocalPlayer.Character.Torso
  32. bombWeld.Part1 = bomb
  33. bombWeld.C1 = CFrame.new(-2.5,0,-1.5) * CFrame.fromEulerAnglesXYZ(math.rad(90),math.rad(0),math.rad(0))
  34.  
  35. local AAA = Instance.new("Sound",game.Players.LocalPlayer.Character.Head)
  36. AAA.Looped = true
  37. AAA.SoundId = "rbxassetid://450479175"
  38. AAA:Play()
  39. local d = false
  40. function explode()
  41.     local ex = Instance.new("Explosion",game.Workspace)
  42.     ex.Position = game.Players.LocalPlayer.Character.Torso.Position
  43.     ex.BlastPressure = 500000
  44.     ex.BlastRadius = 10
  45.     AAA:Stop()
  46. end
  47. function touch(hit)
  48.     local h = hit.Parent:findFirstChildOfClass("Humanoid")
  49.     if h ~= nil and d == false then
  50.         d = true
  51.         explode()
  52.     end
  53. end
  54. game.Players.LocalPlayer.Character.Torso.Touched:connect(touch)
  55. while true do
  56.     wait()
  57.     if game.Players.LocalPlayer.Character.Humanoid.Health == 0 and d == false then
  58.         d = true
  59.         explode()
  60.     end
  61. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement