Advertisement
subaru112g

flash's killer fixed

Feb 25th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. print("Script made by theflashplayer123")
  2. print("Credits for Subaru112 for making some things work")
  3. warn("[[Touch Killer V3 Loaded")
  4. local plr = owner
  5. local rarm = plr.Character:FindFirstChild("Right Arm")
  6. local larm = plr.Character:FindFirstChild("Left Arm")
  7. local face = plr.Character.Head:FindFirstChild("face")
  8. local particle = Instance.new("ParticleEmitter")
  9. particle.Texture = "rbxassetid://2411484272"
  10. particle.Parent = plr.Character.Torso
  11. face.Texture = "http://www.roblox.com/asset/?id=1051212050"
  12. plr.Character.Humanoid.WalkSpeed = 30
  13. local sound = Instance.new("Sound",plr.Character)
  14. sound.SoundId = "rbxassetid://2636407402"
  15. sound:Play()
  16. sound.Volume = 1
  17. sound.Looped = true
  18. plr.Character.Humanoid.MaxHealth = "inf"
  19. plr.Character.Humanoid.Health = "inf"
  20.  
  21. local char = owner.Character
  22.  
  23. local BillboardGui = Instance.new("BillboardGui")
  24. local TextLabel = Instance.new("TextLabel")
  25.  
  26. BillboardGui.Name = "tag"
  27. BillboardGui.Parent = char.Head
  28. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  29. BillboardGui.AlwaysOnTop = false
  30. BillboardGui.ExtentsOffset = Vector3.new(0, 3, 0)
  31. BillboardGui.LightInfluence = 1
  32. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  33.  
  34. TextLabel.Parent = BillboardGui
  35. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  36. TextLabel.BackgroundTransparency = 1
  37. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  38. TextLabel.Font = Enum.Font.SourceSans
  39. TextLabel.Text = "KILLER"
  40. TextLabel.TextColor3 = Color3.new(255, 0, 0)
  41. TextLabel.TextScaled = true
  42. TextLabel.TextSize = 14
  43. TextLabel.TextWrapped = true
  44.  
  45. function dmg(hit)
  46. if hit.Parent ~= nil then
  47. local hum = hit.Parent:findFirstChildOfClass("Humanoid")
  48. if hum ~= nil then
  49. hum.Health = 0
  50. end
  51. end
  52. end
  53.  
  54. rarm.Touched:connect(dmg)
  55. larm.Touched:connect(dmg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement