Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local person=game:GetService("Players").LocalPlayer
- local Player=person.Character
- local Shirt=Player:FindFirstChild("Shirt")
- local Halfway=0.50
- if (Shirt~=nil) then
- Player.Shirt:Destroy()
- print("Shirt Removed")
- end
- local TShirt=Player:FindFirstChild("Shirt Graphic")
- if (TShirt~=nil) then
- Player["Shirt Graphic"]:Destroy()
- print("T-Shirt Removed")
- end
- local Pants=Player:FindFirstChild("Pants")
- if (Pants~=nil) then
- Player.Pants:Destroy()
- print("Pants Removed")
- end
- local ono=Instance.new("Decal")
- ono.Parent=Player.Head
- ono.Face=("Front")
- ono.Name=("face2")
- ono.Texture="rbxassetid://36544324"
- Player.Head.face:Destroy()
- wait()
- Player.Head.BrickColor=BrickColor.new("White")
- Player.Torso.BrickColor=BrickColor.new("White")
- Player["Left Arm"].BrickColor=BrickColor.new("White")
- Player["Right Arm"].BrickColor=BrickColor.new("White")
- Player["Right Leg"].BrickColor=BrickColor.new("White")
- Player["Left Leg"].BrickColor=BrickColor.new("White")
- wait()
- Player.Torso.Transparency=Halfway
- Player.Head.Transparency=Halfway
- Player["Left Arm"].Transparency=Halfway
- Player["Right Arm"].Transparency=Halfway
- Player["Right Leg"].Transparency=Halfway
- Player["Left Leg"].Transparency=Halfway
- local Sound=Instance.new("Sound")
- Sound.SoundId="rbxassetid://182390761"
- Sound.Volume=10
- Sound.Parent=Player.Head
- Sound.Playing=true
- local v=Instance.new("Sound")
- v.Parent=Player.Head
- v.MaxDistance=40
- v.Volume=5
- v.SoundId="rbxassetid://1787893952"
- function onTouch()
- v.Playing=true
- wait(1)
- v.Playing=false
- end
- Player.Animation.idle.Animation2:Destroy()
- Player.Animation.idle.Animation1.AnimationId="rbxassetid://2585771821"
- Player.Animation.walking.Animation2:Destroy()
- Player.Animation.walking.Animation1.AnimationId="rbxassetid://2325492084"
- Player.Torso.Touched:Connect(onTouch)
- Player.Humanoid.MaxHealth=("inf")
- Player.Humanoid.HealthDisplayType=("AlwaysOff")
- Player.Humanoid.WalkSpeed=100
- Player.Humanoid.JumpPower=200
- function onTouch(hit)
- local human=hit.Parent:FindFirstChild("Humanoid")
- if (human~=nil) then
- hit.Parent:BreakJoints()
- end
- end
- Player.Torso.Touched:Connect(onTouch)
- g=Instance.new("SurfaceLight")
- g.Parent=Player.Torso
- g.Angle=180
- g.Brightness=10
- g.Color=Color3.new(255,255,255)
- g.Face=("Top")
- g.Range=60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement