Advertisement
artucox7

Baldi Basics Scipt

May 26th, 2018
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. function clicked(Key)
  2. if Key == "b" then
  3. local Chara = game.Players.LocalPlayer.Character
  4. local Hd = Chara:FindFirstChild("Head")
  5. local Tors = Chara:FindFirstChild("Torso")
  6. local LL = Chara:FindFirstChild("Left Leg")
  7. local LA = Chara:FindFirstChild("Left Arm")
  8. local RL = Chara:FindFirstChild("Right Leg")
  9. local RA = Chara:FindFirstChild("Right Arm")
  10. local BG = Instance.new("BillboardGui",Tors)
  11. local il = Instance.new("ImageLabel",BG)
  12.  
  13. Hd.Transparency = 1
  14. Tors.Transparency = 1
  15. LL.Transparency = 1
  16. LA.Transparency = 1
  17. RL.Transparency = 1
  18. RA.Transparency = 1
  19. while true do
  20. wait(0.1)
  21. local w = game.Workspace:GetChildren()
  22. for i = 1, #w do
  23. c = w[i]:GetChildren()
  24. for i=1, #c do
  25. if (c[i].className == "Accessory") then
  26. c[i]:remove()
  27. end
  28. end
  29. end
  30. end
  31.  
  32. il.Image = ("rbxassetid://1792758966")
  33.  
  34. end
  35. end
  36.  
  37. game.Players.LocalPlayer:GetMouse().keyDown:connect(clicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement