Advertisement
GuestNoobROBLOX

Good Baldi ROBLOX Script With ImageLabel

Jun 17th, 2018
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. repeat wait() until plr.Character
  3. char = plr.Character
  4.  
  5. for i,v in pairs(char:GetChildren()) do
  6. if v.ClassName == "Part" then
  7. v.Transparency = 1
  8. elseif v.ClassName == "Accessory" then
  9. v.Handle.Transparency = 1
  10. end
  11. end
  12. char.Animate:Destroy()
  13. char.Humanoid.Animator:Destroy()
  14. local bill = Instance.new("BillboardGui",char.Head)
  15. bill.Name = "BaldiDisplay"
  16. bill.Adornee = bill.Parent
  17. bill.Size = UDim2.new(8, 0 , 7, 0)
  18. bill.Archivable = true
  19. bill.AutoLocalize = true
  20. local img = Instance.new("ImageLabel",bill)
  21. img.Size = UDim2.new(0.75, 0 , 1.5, 0)
  22. img.Image = "http://www.roblox.com/asset/?id=1948623053"
  23. img.Visible = true
  24. img.BackgroundTransparency = 1
  25. img.Position = UDim2.new(0.213, 0 , 0, 0)
  26. char.Humanoid.HipHeight = 2.1
  27. char.Humanoid.Name = "Baldi"
  28. go = Instance.new("Sound",char)
  29. go.SoundId = "rbxassetid://"
  30. go.Volume = 4
  31. five = Instance.new("Sound",char)
  32. five.SoundId = "rbxassetid://1934826830"
  33. five.Volume = 4
  34. five:Play()
  35. two = Instance.new("Sound",char)
  36. two.SoundId = "rbxassetid://1934356843"
  37. two.Volume = 10
  38. one = Instance.new("Sound",char)
  39. one.SoundId = "rbxassetid://"
  40. one.Volume = 4
  41. four = Instance.new("Sound",char)
  42. four.SoundId = "rbxassetid://"
  43. four.Volume = 4
  44. messup = Instance.new("Sound",char)
  45. messup.SoundId = "rbxassetid://"
  46. messup.Volume = 4
  47. win = Instance.new("Sound",char)
  48. win.Name = "YouWon"
  49. win.SoundId = "rbxassetid://"
  50. win.Volume = 4
  51. ItsPlaytime = Instance.new("Sound",char)
  52. ItsPlaytime.SoundId = "rbxassetid://1882628513"
  53. ItsPlaytime.Volume = 1
  54. ItsPlaytime:Play()
  55. ItsPlaytime.Looped = true
  56. JumpCount = 0
  57. char.Head.face.Transparency = 1
  58. touched = false
  59. char.Torso.Touched:connect(function(part)
  60. local human = part.Parent:FindFirstChildOfClass("Humanoid")
  61. if human and human.Parent.Name ~= char.Name and touched == false then
  62. two:Play()
  63. two.Volume = 1
  64. touched = true
  65. wait(0.9)
  66. if JumpCount == 0 and human.Jump then
  67. JumpCount = 1
  68. else
  69. touched = false
  70. JumpCount = 0
  71. end
  72. wait(1)
  73. if JumpCount == 1 and human.Jump then
  74. JumpCount = 2
  75. else
  76. JumpCount = 0
  77. end
  78. wait(1)
  79. if JumpCount == 2 and human.Jump then
  80. JumpCount = 3
  81. else
  82. JumpCount = 0
  83. end
  84. wait(1)
  85. if JumpCount == 3 and human.Jump then
  86. JumpCount = 4
  87. else
  88. JumpCount = 0
  89. end
  90. wait(1)
  91. if JumpCount == 4 and human.Jump then
  92. JumpCount = 0
  93. wait(1)
  94. touched = false
  95. char.Baldi.Walkspeed = 16
  96. human.WalkSpeed = 16
  97. else
  98. JumpCount = 0
  99. end
  100. end
  101. end)
  102. while true do
  103. wait()
  104. img.Image = "http://www.roblox.com/asset/?id=1948623053"
  105. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement