StrawberryMemester

i drive a chevrolet movie theatre (TEST)

Mar 2nd, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. local Plr = game.Players.LocalPlayer
  3. local PChar = Plr.Character
  4.  
  5. wait(0.5)
  6.  
  7. local CharPart = Instance.new("Part", PChar)
  8. CharPart.Size = Vector3.new(9.067, 12.97, 29.795)
  9. CharPart.Rotation = Vector3.new(-180, 0, -180)
  10. CharPart.Name = "Danky"
  11. CharPart.CanCollide = true
  12. local CharMesh = Instance.new("SpecialMesh", CharPart)
  13. CharMesh.MeshId = "rbxassetid://456959405"
  14. CharMesh.TextureId = "rbxassetid://42195336"
  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 = 145
  28.  
  29. local Music = Instance.new("Sound", CharPart)
  30. Music.SoundId = "rbxassetid://131530786"
  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)
Add Comment
Please, Sign In to add comment