Advertisement
Clyclop

Untitled

Aug 21st, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. -- ty krystalburger
  2. --[[
  3. Thomas The Dank Engine:
  4. By: KrystalTeam
  5. Features: Being a dank engine that kill people
  6. Version: 1.0.0.2
  7. --]]
  8.  
  9. local p = game.Players.LocalPlayer.Character
  10. local weld = Instance.new("Weld",p.Torso)
  11. weld.Part0 = p.Torso
  12.  
  13. local train = Instance.new("Part",p.Torso)
  14. train.Anchored = true
  15. train.CanCollide = false
  16. train.Size = Vector3.new(3,2,6)
  17. train.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  18. weld.Part1 = train
  19. weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,math.rad(180),0)
  20. train.Anchored = false
  21. local TrainMesh = Instance.new("SpecialMesh",train)
  22. TrainMesh.MeshType = Enum.MeshType.FileMesh
  23. TrainMesh.Scale = Vector3.new(0.020,0.020,0.015)
  24. TrainMesh.MeshId = "rbxassetid://48103520"
  25. TrainMesh.TextureId = "rbxassetid://430379210"
  26.  
  27.  
  28. local weld2 = Instance.new("Weld",p.Torso)
  29. weld2.Part0 = p.Torso
  30. local Smoke = Instance.new("Part",p.Torso)
  31. Smoke.Anchored = true
  32. Smoke.CanCollide = false
  33. Smoke.Size = Vector3.new(1,1,1)
  34. Smoke.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  35. weld2.Part1 = Smoke
  36. weld2.C1 = CFrame.new(0,-4,3.5)-- * CFrame.Angles(0,math.rad(180),0)
  37. Smoke.Anchored = false
  38. Smoke.Transparency = 1;
  39.  
  40.  
  41. p.Humanoid.WalkSpeed = 60;
  42.  
  43.  
  44. for i,v in pairs(p:GetChildren()) do
  45. if v:IsA("Part") then
  46. v.Transparency = 1;
  47. elseif v:IsA("Hat") then
  48. v:Destroy()
  49. elseif v:IsA("Model") then
  50. v:Destroy()
  51. end
  52. end
  53.  
  54. local function SFX(id) local s=Instance.new("Sound",p.Torso); s.SoundId = "rbxassetid://"..id; s.Volume = 1; return s; end
  55. train.Touched:connect(function(p)
  56. if p.Parent then
  57. if p.Parent:IsA("Model") then
  58. if game.Players:FindFirstChild(p.Parent.Name) then
  59. if p.Parent.Name ~= game.Players.LocalPlayer.Name then
  60. game.Players:FindFirstChild(p.Parent.Name).Character:BreakJoints()
  61. local Whistle = SFX()
  62. Whistle:Play()
  63. end
  64. end
  65. end
  66. end
  67. end)
  68.  
  69. local Music = SFX(270226256)
  70. Music.Looped = true;
  71. wait(1)
  72. Music:Play();
  73. -- ~CL 2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement