TheUnknownDiscord

bad ending

Aug 26th, 2021 (edited)
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. owner = game:GetService("Players").Lucas_YT111 --change to your name here
  2. local Char = owner.Character
  3. local Hat = Instance.new("Part", game.Workspace)
  4. Hat.Size = Vector3.new(1.5, 1, 1.5)
  5. Hat.Rotation = Char.PrimaryPart.Rotation
  6. SpecialMesh2 = Instance.new("SpecialMesh")
  7. SpecialMesh2.Parent = Hat
  8. SpecialMesh2.MeshId = "http://www.roblox.com/asset/?id=45915012"
  9. SpecialMesh2.TextureId = "http://www.roblox.com/asset/?id=45915003"
  10. SpecialMesh2.Scale = Vector3.new(1, 1, 1)
  11. Hat.Position = Char.PrimaryPart.Position + Vector3.new(0, 1.5, 0)
  12. local mask = Instance.new("Part", game.Workspace)
  13. mask.Size = Vector3.new(1.5, 1, 1.5)
  14. mask.Rotation = Char.PrimaryPart.Rotation
  15. SpecialMesh2 = Instance.new("SpecialMesh")
  16. SpecialMesh2.Parent = mask
  17. SpecialMesh2.MeshId = "http://www.roblox.com/asset/?id=5268632830"
  18. SpecialMesh2.TextureId = "http://www.roblox.com/asset/?id=5268632895"
  19. SpecialMesh2.Scale = Vector3.new(1, 1, 1)
  20. mask.Position = Char.PrimaryPart.Position + Vector3.new(-1.75, 1, 0)
  21. local music = Instance.new("Sound", Hat)
  22. music.SoundId = "rbxassetid://4325972006"
  23. music.Volume = 2.5
  24. music.Looped = True
  25. music:Play()
  26. wait(0.1)
  27. for i,v in pairs(Char:GetDescendants()) do
  28. if v:IsA("BasePart") then
  29. v:Destroy()
  30. end
  31. end
Add Comment
Please, Sign In to add comment