Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Player = game.Players.LocalPlayer
- local Character = Player.Character
- local mouse=Player:GetMouse()
- local Mesh = Instance.new("SpecialMesh", Character.Torso)
- Mesh.MeshType = "FileMesh"
- Mesh.Scale = Vector3.new(7, 7, 7)
- Mesh.MeshId = "http://www.roblox.com/asset/?id=6552202"
- Mesh.TextureId = "http://www.roblox.com/asset/?id=6552149"
- Mesh.VertexColor = Vector3.new(0.7, 0, 0)
- local PE = Instance.new("ParticleEmitter", Character.Torso)
- PE.Name = "Flame"
- local c1 = Color3.new(0, 0, 0)
- local c2 = Color3.new(144,0,0)
- PE.Color = ColorSequence.new(c1)
- PE.EmissionDirection = "Bottom"
- PE.Texture = "rbxassetid://290556384"
- PE.LightEmission = 0.850
- PE.Speed = NumberRange.new(0)
- PE.RotSpeed = NumberRange.new(500)
- PE.Size = NumberSequence.new(.5)
- PE.Lifetime = NumberRange.new(1)
- PE.Rate = 200
- PE.VelocitySpread = 50
- repeat wait() until Character ~= nil
- Character:WaitForChild("Humanoid").MaxHealth = math.huge
- Character.Head:WaitForChild("face"):Destroy()
- Character.Torso:WaitForChild("roblox"):Destroy()
- Character:WaitForChild("Humanoid").WalkSpeed = 25
- Character:WaitForChild("Head").Transparency = 1
- Character:WaitForChild("Torso").Transparency = 0
- Character:WaitForChild("Left Arm").Transparency = 1
- Character:WaitForChild("Right Arm").Transparency = 1
- Character:WaitForChild("Left Leg").Transparency = 1
- Character:WaitForChild("Right Leg").Transparency = 1
- local a = Character:getChildren()
- for i = 1, #a do
- if (a[i].ClassName == "Hat") then
- a[i]:remove()
- end
- end
- mouse.KeyDown:connect(function(key)
- if key:byte() == 48 then
- Character:WaitForChild("Humanoid").JumpPower = 70
- Character:WaitForChild("Humanoid").WalkSpeed = 50
- Character:WaitForChild("Head").Transparency = 1
- Character:WaitForChild("Torso").Transparency = 0.9
- Character:WaitForChild("Left Arm").Transparency = 1
- Character:WaitForChild("Right Arm").Transparency = 1
- Character:WaitForChild("Left Leg").Transparency = 1
- Character:WaitForChild("Right Leg").Transparency = 1
- elseif key== "q" then
- PE.Enabled = false
- elseif key== "e" then
- PE.Enabled = true
- elseif key== "x" then
- PE.Color = ColorSequence.new(c1)
- PE.LightEmission = 0.850
- PE.Speed = NumberRange.new(0)
- PE.Size = NumberSequence.new(.5)
- PE.Rate = 200
- elseif key== "z" then
- PE.Color = ColorSequence.new(c2)
- PE.LightEmission = 0.25
- PE.Speed = NumberRange.new(5)
- PE.Size = NumberSequence.new(.3)
- PE.Rate = 500
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key:byte() == 48 then
- Character:WaitForChild("Humanoid").JumpPower = 50
- Character:WaitForChild("Humanoid").WalkSpeed = 25
- Character:WaitForChild("Head").Transparency = 1
- Character:WaitForChild("Torso").Transparency = 0
- Character:WaitForChild("Left Arm").Transparency = 1
- Character:WaitForChild("Right Arm").Transparency = 1
- Character:WaitForChild("Left Leg").Transparency = 1
- Character:WaitForChild("Right Leg").Transparency = 1
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement