Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game:GetService('Players').LocalPlayer
- local char = game:GetService('Players').LocalPlayer.Character
- local mouse = player:GetMouse()
- --particle
- local p = Instance.new('ParticleEmitter')
- p.Parent = game:GetService('Players').LocalPlayer.Character:FindFirstChild('Right Arm')
- p.Rate = 100
- p.Size = NumberSequence.new(1,0.1)
- p.Lifetime = NumberRange.new(1,1)
- p.Texture = "http://www.roblox.com/asset/?id=274458269"
- p.Color = ColorSequence.new(Color3.new(BrickColor.Black))
- --Body Color
- bodyc = game.Players.LocalPlayer.Character:FindFirstChild('Body Colors')
- bodyc.HeadColor = BrickColor.new('Really black')
- bodyc.TorsoColor = BrickColor.new('Really black')
- bodyc.LeftArmColor = BrickColor.new('Really black')
- bodyc.LeftLegColor = BrickColor.new('Really black')
- bodyc.RightArmColor = BrickColor.new('Really black')
- bodyc.RightLegColor = BrickColor.new('Really black')
- --stats
- game.Players.LocalPlayer.Character.Humanoid.HipHeight = 3
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30
- game.Players.LocalPlayer.Character.Head.face:Destroy()
- if game.Players.LocalPlayer.Character:FindFirstChild('Shirt') then
- game.Players.LocalPlayer.Character.Shirt:Destroy()
- end
- if game.Players.LocalPlayer.Character:FindFirstChild('Pants') then
- game.Players.LocalPlayer.Character.Pants:Destroy()
- end
- function clickedUp()
- local r = game.Players.LocalPlayer.Character:FindFirstChild('Right Arm')
- if r:FindFirstChild('ParticleEmitter') then
- --maybe
- end
- end
- function clickedDown()
- if mouse.Target.Parent:FindFirstChild('Humanoid') then
- local hum = mouse.Target.Parent.Humanoid
- mouse.Target:Destroy()
- hum.Health = hum.Health - hum.Health
- bodyc = mouse.Target.Parent:FindFirstChild('Body Colors')
- bodyc.HeadColor = BrickColor.new('Really black')
- bodyc.TorsoColor = BrickColor.new('Really black')
- bodyc.LeftArmColor = BrickColor.new('Really black')
- bodyc.LeftLegColor = BrickColor.new('Really black')
- bodyc.RightArmColor = BrickColor.new('Really black')
- bodyc.RightLegColor = BrickColor.new('Really black')
- end
- end
- mouse.Button1Down:connect(clickedDown)
- mouse.Button1Up:connect(clickedUp)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement