Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = 'RGames1234' -- put your name here or something
- wait(5)
- local character = game:GetService("Players"):FindFirstChild(player).Character
- if character:FindFirstChild('Head') and character:FindFirstChild('HumanoidRootPart') then
- local sound = Instance.new("Sound", character.Head)
- sound.SoundId = 'rbxassetid://1784586952'
- sound.Volume = 10
- sound.Looped = true
- sound:Play()
- for _,v in pairs(character:GetChildren()) do
- if v:IsA('Part') then
- v.BrickColor = BrickColor.new("Br. yellowish orange")
- end
- if v:IsA('Accessory') then
- v:Destroy()
- end
- if v:IsA('Shirt') or v:IsA('ShirtGraphic') or v:IsA('Pants') then
- v:Destroy()
- end
- end
- if character.Head:FindFirstChild('face') then
- character.Head.face.Texture = 'rbxassetid://3467700326'
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement