Advertisement
okEi1988

New script

Apr 24th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. local Part = Instance.new("Part")
  2. Part.Name = "Source"
  3. Part.Transparency = 1
  4. Part.TopSurface = 0
  5. Part.BottomSurface = 0
  6. Part.FormFactor = "Custom"
  7. Part.Size = Vector3.new(0.2, 0.2, 0.2)
  8. Part.Parent = Parts
  9. local Weld = Instance.new("Weld")
  10. Weld.Part0 = Part
  11. Weld.Part1 = Handle
  12. Weld.C0 = CFrame.fromEulerAnglesXYZ(math.rad(90), 0, 0) * CFrame.new(0, -0.15, 4.3)
  13. Weld.Parent = Weld.Part0
  14. local Fire = Instance.new("Fire", Part)
  15. Fire.Enabled = false
  16. Fire.Size = 10
  17. Fire.Heat = 20
  18. Fire.Color = Color3.new(1, 0.6, 0.2)
  19. Fire.SecondaryColor = Color3.new(0.6, 0.1, 0.05)
  20. local Smoke = Instance.new("Smoke", Part)
  21. Smoke.Enabled = false
  22. Smoke.Size = 20
  23. Smoke.RiseVelocity = 15
  24. Smoke.Color = Color3.new(0.8, 0.8, 0.8)
  25. Smoke.Opacity = 0.3
  26.  
  27. for _, Part in pairs(Parts:GetChildren()) do
  28. Part.Locked = true
  29. Part.CanCollide = false
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement