Advertisement
Donny526

Booga Script for Void Script Builder

Jul 3rd, 2018
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. -- Booga Script --
  2. -- Based off of Mount Of The Gods --
  3. -- Made by Donny526 --
  4. -- Donny526#1886 --
  5.  
  6.  
  7. wait()
  8. -- Setting up the placeholders. --
  9. plr = game.Players.LocalPlayer
  10. chr = plr.Character
  11. lrm = chr:WaitForChild("Left Arm")
  12. rrm = chr:WaitForChild("Right Arm")
  13. llg = chr:WaitForChild("Left Leg")
  14. rlg = chr:WaitForChild("Right Leg")
  15. head = chr:WaitForChild("Head")
  16. torso = chr:WaitForChild("Torso")
  17. face = head:WaitForChild("face")
  18.  
  19. wait()
  20. -- Giving credit, obviously. --
  21. print(plr.Name.." is using the Booga script by Donny526!")
  22.  
  23. wait()
  24. -- Locating the nearest Body Colors TO BANISH IT FROM THIS REALM! Wow that was dark. --
  25. bc = chr:WaitForChild("Body Colors")
  26. bc:Destroy()
  27.  
  28. wait()
  29. -- Giving your character a paint job. :D --
  30. lrm.BrickColor = BrickColor.new("Brown")
  31. rrm.BrickColor = BrickColor.new("Brown")
  32. llg.BrickColor = BrickColor.new("Bright green")
  33. rlg.BrickColor = BrickColor.new("Bright green")
  34. head.BrickColor = BrickColor.new("Brown")
  35. torso.BrickColor = BrickColor.new("Brown")
  36. face.Texture = "rbxassetid://167172227"
  37.  
  38. wait()
  39. -- The final touches (starring the removal of your clothing). --
  40. chd = chr:GetChildren()
  41.  
  42. for i=1, #chd do
  43. if (chd[i].className == "Accessory") then
  44. chd[i]:remove()
  45. end
  46. end
  47. for i=1, #chd do
  48. if (chd[i].className == "Shirt") then
  49. chd[i]:remove()
  50. end
  51. end
  52. for i=1, #chd do
  53. if (chd[i].className == "Pants") then
  54. chd[i]:remove()
  55. end
  56. end
  57.  
  58. -- YIELD!!! --
  59.  
  60. --[[
  61. This is the end of the script.
  62.  
  63. Don't look any further because you won't find anything.
  64. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement