Advertisement
pitrioptixiop

Roblox | Baldi Script

Jun 8th, 2018
7,057
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1.  
  2. --more views than nuke script! wow! also this script is broken cuz its non fe
  3.  
  4. angry = false
  5. wait(1)
  6. lp = game.Players.LocalPlayer
  7. char = lp.Character
  8. head = char.Head
  9. hum = char.Humanoid
  10. gc = char:GetChildren()
  11. for i=1, #gc do
  12. wait(0.01)
  13. if gc[i].ClassName == "Shirt" or gc[i].ClassName == "Pants" or gc[i].ClassName == "Hat" or gc[i].ClassName == "Accessory" or gc[i].ClassName == "ShirtGraphic" or gc[i].ClassName == "BodyColors" then
  14. gc[i]:Destroy()
  15. end
  16. end
  17. newbc = Instance.new("BodyColors",char)
  18. newbc.HeadColor = BrickColor.new("Buttermilk")
  19. newbc.TorsoColor = BrickColor.Green()
  20. newbc.LeftArmColor = BrickColor.Green()
  21. newbc.RightArmColor = BrickColor.Green()
  22. newbc.LeftLegColor = BrickColor.Blue()
  23. newbc.RightLegColor = BrickColor.Blue()
  24. head:FindFirstChildOfClass("Decal").Texture = "rbxasset://textures/face.png"
  25. sound = Instance.new("Sound",head)
  26. sound.SoundId = "rbxassetid://1828370087"
  27. sound.Volume = 10
  28. sound.Looped = true
  29. sound:Play()
  30. pg = lp.PlayerGui
  31. gui = Instance.new("ScreenGui",pg)
  32. tb = Instance.new("TextButton",gui)
  33. tb.Text = "angery"
  34. tb.TextScaled = true
  35. tb.Position = UDim2.new(0.725,0,0.86,0)
  36. tb.Size = UDim2.new(0,200,0,50)
  37. tb.MouseButton1Click:connect(function()
  38. gui:Destroy()
  39. angry = true
  40. end)
  41. repeat
  42. wait(0.01)
  43. until angry == true
  44. sound:Stop()
  45. sound:Destroy()
  46. hum.WalkSpeed = 0
  47. hum.JumpPower = 0
  48. newsound = Instance.new("Sound",head)
  49. newsound.SoundId = "rbxassetid://1841427728"
  50. wait(2)
  51. head:FindFirstChildOfClass("Decal").Texture = "http://www.roblox.com/asset/?id=146313815"
  52. wait(2)
  53. tool = Instance.new("Tool",lp.Backpack)
  54. tool.Name = "Ruler"
  55. part = Instance.new("Part",tool)
  56. part.Name = "Handle"
  57. part.Size = Vector3.new(1,6,1)
  58. part.BrickColor = BrickColor.new("Dirt brown")
  59. tool.GripPos = Vector3.new(3,0,0)
  60. torso = char:FindFirstChild("Torso")
  61. torso.Touched:connect(function(hit)
  62. hit.Parent:BreakJoints()
  63. end)
  64. tool.Parent = char
  65. function onKeyPress(inputObject, gameProcessedEvent)
  66. if inputObject.KeyCode == Enum.KeyCode.Space then
  67. newsound:Play()
  68. hum.WalkSpeed = 80
  69. tool.GripRight = Vector3.new(1,1,0)
  70. wait(0.2)
  71. hum.WalkSpeed = 0
  72. tool.GripRight = Vector3.new(0,0,0)
  73. end
  74. end
  75.  
  76. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  77.  
  78. --Loop events
  79. while true do
  80. wait(0.01)
  81. if tool.Parent ~= char then
  82. tool.Parent = char
  83. end
  84. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement