Advertisement
SonicSydneyTheEditer

(-Baldi’s Other Side, Why I posted this?-)

Jun 19th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. wait()
  2. -- by Theamazingnater
  3. plr = game.Players.LocalPlayer
  4. chara = plr.Character
  5. mouse = plr:GetMouse()
  6. Create = Instance.new
  7. Huge = math.huge
  8.  
  9. local music = Create("Sound",chara.HumanoidRootPart)
  10. music.SoundId = "rbxassetid://935501955"
  11. music.Volume = 10
  12. music.Looped = true
  13. music:Play()
  14. local shadowhead = Create("Part",chara.Head)
  15. shadowhead.BrickColor = BrickColor.new("Bright green")
  16. shadowhead.Size = Vector3.new(1.2, 0.6, 1)
  17. shadowhead.CanCollide = false
  18. local shadowheadmesh = Create("SpecialMesh",shadowhead)
  19. shadowheadmesh.MeshType = "Head"
  20. shadowheadmesh.Scale = Vector3.new(1.26, 1.5, 1.26)
  21. local weld2 = Create("Weld",shadowhead)
  22. weld2.Part0 = shadowhead
  23. weld2.Part1 = chara.Head
  24. weld2.C1 = CFrame.new(0, 0.200000048, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement