Advertisement
lafur

Untitled

Feb 4th, 2019
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Hello, You Cannot find Thomas Train ROBLOX Script on PasteBin? Because, i'll remake this!
  2.  
  3. local Plr = game.Players.LocalPlayer
  4. local PChar = Plr.Character
  5.  
  6. wait(0.5)
  7.  
  8. local CharPart = Instance.new("Part", PChar)
  9. CharPart.Size = Vector3.new(9.067, 12.97, 29.795)
  10. CharPart.Rotation = Vector3.new(-180, 0, -180)
  11. CharPart.Name = "Danky"
  12. CharPart.CanCollide = true
  13. local CharMesh = Instance.new("SpecialMesh", CharPart)
  14. CharMesh.MeshId = "rbxassetid:///2711200633"
  15. CharMesh.Scale = Vector3.new(0.03, 0.03, 0.03)
  16. local CharWeld = Instance.new("Weld", PChar.Torso)
  17. CharWeld.Part0 = CharPart
  18. CharWeld.Part1 = PChar.Torso
  19. CharWeld.C0 = CFrame.Angles(0, math.pi, 0)
  20. CharWeld.Name = "DankyWeld"
  21. local CharLight = Instance.new("SpotLight", CharPart)
  22. CharLight.Face = "Back"
  23. CharLight.Range = 60
  24.  
  25. local Humanoid = PChar:WaitForChild("Humanoid")
  26.  
  27. Humanoid.WalkSpeed = 100
  28.  
  29. local Music = Instance.new("Sound", CharPart)
  30. Music.SoundId = "rbxassetid://190141163"
  31. Music.Volume = 1
  32. Music.Looped = true
  33. Music:Play()
  34.  
  35. CharPart.Touched:connect(function(ChildTouched)
  36.     if ChildTouched.Parent:FindFirstChild("Humanoid") == nil then else
  37.         if ChildTouched.Parent.Name == Plr.Name then return end
  38.         local BomSFX = Instance.new("Sound", game.Workspace)
  39.         BomSFX.SoundId = "rbxassetid://141679994"
  40.         BomSFX.Volume = 1
  41.         BomSFX:Play()
  42.         ChildTouched.Parent:FindFirstChild("Humanoid").Health = 0
  43.     end
  44. end)
  45.  
  46. wait(0.5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement