Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Booga Script --
- -- Based off of Mount Of The Gods --
- -- Made by Donny526 --
- -- Donny526#1886 --
- wait()
- -- Setting up the placeholders. --
- plr = game.Players.LocalPlayer
- chr = plr.Character
- lrm = chr:WaitForChild("Left Arm")
- rrm = chr:WaitForChild("Right Arm")
- llg = chr:WaitForChild("Left Leg")
- rlg = chr:WaitForChild("Right Leg")
- head = chr:WaitForChild("Head")
- torso = chr:WaitForChild("Torso")
- face = head:WaitForChild("face")
- wait()
- -- Giving credit, obviously. --
- print(plr.Name.." is using the Booga script by Donny526!")
- wait()
- -- Locating the nearest Body Colors TO BANISH IT FROM THIS REALM! Wow that was dark. --
- bc = chr:WaitForChild("Body Colors")
- bc:Destroy()
- wait()
- -- Giving your character a paint job. :D --
- lrm.BrickColor = BrickColor.new("Brown")
- rrm.BrickColor = BrickColor.new("Brown")
- llg.BrickColor = BrickColor.new("Bright green")
- rlg.BrickColor = BrickColor.new("Bright green")
- head.BrickColor = BrickColor.new("Brown")
- torso.BrickColor = BrickColor.new("Brown")
- face.Texture = "rbxassetid://167172227"
- wait()
- -- The final touches (starring the removal of your clothing). --
- chd = chr:GetChildren()
- for i=1, #chd do
- if (chd[i].className == "Accessory") then
- chd[i]:remove()
- end
- end
- for i=1, #chd do
- if (chd[i].className == "Shirt") then
- chd[i]:remove()
- end
- end
- for i=1, #chd do
- if (chd[i].className == "Pants") then
- chd[i]:remove()
- end
- end
- -- YIELD!!! --
- --[[
- This is the end of the script.
- Don't look any further because you won't find anything.
- --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement