Advertisement
Bloxxyl

When you want to fuck someone hard

Nov 24th, 2016
380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. -- by unreal
  2. -- TODO: add comments between lines
  3.  
  4. local mouse = game:GetService"Players".LocalPlayer:GetMouse()
  5. local burn
  6.  
  7. _G.spread = true
  8.  
  9. burn = function(part)
  10.  
  11. coroutine.wrap(function()
  12.  
  13. -- disgusting
  14. if (part.Size.x * part.Size.y) <= 7000 and not (part.Material == Enum.Material.CorrodedMetal) and not part:FindFirstChild"Fire" and _G.spread then
  15.  
  16. part:MakeJoints()
  17.  
  18. local fire = Instance.new("Fire" , part)
  19.  
  20. if math.random(1, 400) == 100 then
  21. Instance.new("Explosion" , part).Position = part.Position
  22. end
  23.  
  24. wait(3)
  25.  
  26. part.Material = Enum.Material.CorrodedMetal
  27.  
  28. wait(3)
  29.  
  30. part.Color = Color3.new(0, 0, 0)
  31.  
  32. wait(3)
  33.  
  34. part.Touched:connect(burn)
  35.  
  36. for i, touching in pairs(part:GetConnectedParts()) do
  37.  
  38. wait(math.random(0, 5))
  39.  
  40. burn(touching)
  41.  
  42. end
  43.  
  44. wait(.4)
  45.  
  46. part:BreakJoints()
  47.  
  48. wait(3)
  49.  
  50. part.Anchored = false
  51.  
  52. wait(40)
  53.  
  54. fire:Destroy()
  55.  
  56. part.Anchored = true
  57.  
  58. end
  59.  
  60. end)()
  61.  
  62. end
  63.  
  64. game:GetService"UserInputService".InputBegan:connect(function(key)
  65. if key.KeyCode == Enum.KeyCode.Semicolon then
  66. burn(mouse.Target)
  67. end
  68. end)
  69.  
  70. print("[fire.lua] press semicolon.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement