Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- kd = (game.Players.LocalPlayer.Name)
- ko = (game.Players.LocalPlayer.Character)
- ko.Head.Transparency = 1
- local fr = Instance.new("Fire",ko.Head)
- fr.Heat = 100
- fr.Size = 5
- for i,v in pairs (ko:GetChildren()) do
- if v.Name == "Head" then
- v.face.Texture = "http://www.roblox.com/asset/?id=362505168"
- end
- end
- for i,v in pairs(ko:GetChildren()) do
- if v.ClassName == 'Hat' then
- v:Destroy()
- end
- end
- for i,v in pairs(ko:GetChildren()) do
- if v.ClassName == 'Shirt' then
- v:Destroy()
- end
- end
- for i,v in pairs(ko:GetChildren()) do
- if v.ClassName == 'Pants' then
- v:Destroy()
- end
- end
- wait()
- hat1 = Instance.new('Hat')
- hat1.Parent = game.Players[kd].Character
- handle = Instance.new('Part')
- handle.Name = 'Handle'
- handle.Parent = hat1
- handlemesh = Instance.new('SpecialMesh')
- handlemesh.MeshType = 'FileMesh'
- handlemesh.MeshId = 'http://www.roblox.com/asset/?id=1158007'
- handlemesh.TextureId = 'rbxassetid://1158415'
- handlemesh.Scale = Vector3.new(0.5,0.5,0.5)
- handlemesh.Parent = handle
- hat2 = Instance.new('Hat')
- hat2.Parent = game.Players[kd].Character
- shrt = Instance.new('Shirt')
- shrt.Parent = ko
- shrt.ShirtTemplate = 'http://www.roblox.com/asset/?id=182856003'
- shrt = Instance.new('Pants')
- shrt.Parent = ko
- shrt.PantsTemplate = 'http://www.roblox.com/asset/?id=184405208'
- local plr = game.Players.LocalPlayer
- local char = plr.Character or plr.CharacterAdded:wait()
- local mouse = plr:GetMouse()
- deb = false
- local torso = char:WaitForChild("Torso")
- function Blast(key)
- local key = key:lower()
- if (key == "z") and (deb == false) then
- deb = true
- local hs = Instance.new("Part",game.Workspace)
- hs.CanCollide = false
- hs.Shape = "Ball"
- hs.BrickColor = BrickColor.new("Really red")
- hs.Transparency = 0/5
- hs.Size = Vector3.new(5,5,5) --yeah my name is bushido and my destiny is to be me
- hs.TopSurface = "Smooth" --smooth like me
- hs.BottomSurface = "Smooth" --again like me i got the smooth moves
- hs.CFrame = torso.CFrame*CFrame.new(0,0,-6)
- hs.Touched:connect(function(touch)
- local Humanoid = touch.Parent:FindFirstChild("Humanoid")
- if not Humanoid then
- Humanoid = touch.Parent.Parent:FindFirstChild("Child")
- end
- if Humanoid then
- Humanoid:TakeDamage(Humanoid.MaxHealth)
- end
- end)
- local f = Instance.new("Fire",hs)
- f.Heat = 0
- f.Size = 12
- local bv = Instance.new("BodyVelocity",hs)
- bv.maxForce = Vector3.new(math.huge,math.huge,math.huge)
- bv.Velocity = torso.CFrame.lookVector*80
- wait(6)
- deb = false
- end
- end
- mouse.KeyDown:connect(Blast)
Add Comment
Please, Sign In to add comment