Skill_Gamer

Untitled

Oct 18th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.94 KB | None | 0 0
  1. Name = "Gamer_Kyle"
  2. playerman = game.Workspace:findFirstChild(Name)
  3. f = Instance.new("Fire")
  4. f.Parent = playerman.Head
  5. f.Color = Color3.new(0)
  6. f.SecondaryColor = Color3.new(0)
  7. f.Size = 5
  8. Players = game.Players
  9. Workspace = game.Workspace
  10. HopperBinName = "Sword"
  11. Activated = false
  12. Equipped = false
  13. Equipping = false
  14. Unequipping = false
  15. Flaming = false
  16. Shielding = false
  17. SlimeCharge = false
  18. DarkCharge = false
  19. Mode = ""
  20. Damage = 20
  21. ExplosionVictim = ""
  22. Me = Players:findFirstChild(Name)
  23. if Me == nil then
  24. Me = Players:findFirstChild("Player")
  25. end
  26. Backpack = Me["Backpack"]
  27. PlayerGui = Me["PlayerGui"]
  28. wait(0.8)
  29. ------------------------------------------------------------
  30. playerman = game.Workspace:findFirstChild(Name)
  31. f = Instance.new("Fire")
  32. f.Parent = playerman.Torso
  33. f.Color = Color3.new(0)
  34. f.SecondaryColor = Color3.new(0)
  35. f.Size = 20
  36. Players = game.Players
  37. Workspace = game.Workspace
  38. HopperBinName = "Sword"
  39. Activated = false
  40. Equipped = false
  41. Equipping = false
  42. Unequipping = false
  43. Flaming = false
  44. Shielding = false
  45. SlimeCharge = false
  46. DarkCharge = false
  47. Mode = ""
  48. Damage = 20
  49. ExplosionVictim = ""
  50. Me = Players:findFirstChild(Name)
  51. if Me == nil then
  52. Me = Players:findFirstChild("Player")
  53. end
  54. Backpack = Me["Backpack"]
  55. PlayerGui = Me["PlayerGui"]
  56. wait(0.8)
  57. ------------------------------------------------------------
  58. -- Ezio Suit --
  59. -- Local Script --
  60.  
  61. script.Parent = nil
  62.  
  63. local plr = game.Players.LocalPlayer
  64. local char = plr.Character
  65. local hum = char.Humanoid
  66. local tar = char["Torso"]
  67.  
  68. local par = char
  69.  
  70. local capename = "sCape"
  71. if par:FindFirstChild(capename) then par[capename]:Destroy() end
  72.  
  73. local Parts = {}
  74. local capeLength = 4 -- studs
  75. local partAm = 25
  76. local startWidth = 2.2
  77. local endWidth = 3.4
  78. local thickness = .1
  79. local ups = 30 -- updates per second
  80. local clr = BrickColor.new("Really black")
  81. local hood = true
  82. local suit = true
  83. local phys = true
  84.  
  85.  
  86. local widthCh = (endWidth-startWidth)/partAm
  87. local zSiz = capeLength/partAm
  88.  
  89.  
  90. local Model = Instance.new("Model",par)
  91. Model.Name = capename
  92.  
  93. function weld(p0,p1,c0,c1)
  94. local w = Instance.new("Weld",Model)
  95. w.Part0 = p0
  96. w.Part1 = p1
  97. w.C0 = c0 or CFrame.new()
  98. w.C1 = c1 or CFrame.new()
  99. return w
  100. end
  101.  
  102. function invcol(c)
  103. c = c.Color
  104. return BrickColor.new(Color3.new(1-c.b,1-c.g,1-c.r))
  105. end
  106.  
  107. local part = Instance.new("Part",Model)
  108. Instance.new("BlockMesh",part)
  109. part.FormFactor = "Custom"
  110. part.BrickColor = clr
  111. part.FormFactor = "Custom"
  112. part.Size = Vector3.new(.2,.2,.2)
  113. part.Parent = Model
  114. part:BreakJoints()
  115. part.Reflectance = 0
  116. part.CanCollide = false
  117. part.Locked = true
  118. part.Mesh.Scale = Vector3.new(startWidth,thickness,1+(thickness))/.2
  119. part.TopSurface = "Smooth"
  120. part.BottomSurface = "Smooth"
  121. weld(tar,part,CFrame.new(0,.989,0))
  122.  
  123. local tor,la,ra,ll,rl,hd = char:FindFirstChild("Torso"),char:FindFirstChild("Left Arm"),char:FindFirstChild("Right Arm"),
  124. char:FindFirstChild("Left Leg"), char:FindFirstChild("Right Leg"), char:FindFirstChild("Head")
  125.  
  126. pcall(function() la.Transparency = 0 end)
  127. pcall(function() ra.Transparency = 0 end)
  128. pcall(function() ll.Transparency = 0 end)
  129. pcall(function() rl.Transparency = 0 end)
  130. pcall(function() hd.Transparency = 0 end)
  131. pcall(function() tar.Transparency = 0 end)
  132.  
  133. if not hood or not suit then
  134. pcall(function() hd.face.Face = "Front" end)
  135. end
  136.  
  137. if hood then
  138. for i,v in pairs(char:GetChildren()) do if v:IsA("Hat") then pcall(function() v.Handle.Transparency = 1 end) end end
  139. local hood = part:Clone()
  140. hood.Parent = Model
  141. hood.Mesh:Destroy()
  142. local m = Instance.new("SpecialMesh",hood)
  143. m.MeshId = "http://www.roblox.com/asset/?id=16952952"
  144. m.TextureId = "http://www.roblox.com/asset/?id=91740209"
  145. m.Scale = Vector3.new(1.06,1.06,1.06)
  146. m.VertexColor = Vector3.new(clr.Color.r,clr.Color.g,clr.Color.b)
  147. weld(hd,hood,CFrame.new(0,0.3,-.08))
  148. end
  149.  
  150. if hd and hood then
  151. local hd2 = hd:Clone()
  152. hd2.Parent = Model
  153. weld(hd,hd2)
  154. hd.Transparency = 1
  155. hd2.Transparency = 0
  156. pcall(function() hd2.face:Destroy() end)
  157. pcall(function() hd2.Mesh.Scale = hd2.Mesh.Scale + Vector3.new(.01,.01,.01) end)
  158. pcall(function() hd.face.Face = "Bottom" end)
  159. hd2.BrickColor = BrickColor.new("Really black")
  160. local bbg = Instance.new("BillboardGui",hd2)
  161. bbg.Size = UDim2.new(2,0,1,0)
  162. bbg.SizeOffset = Vector2.new(0,1.2)
  163. local tl = Instance.new("TextLabel",bbg)
  164. tl.BackgroundTransparency = 1
  165. tl.Size = UDim2.new(1,0,.4,0)
  166. tl.TextScaled = true
  167. tl.Text = char.Name--"Assassin"
  168. tl.TextTransparency = .9
  169. tl.TextColor3 = Color3.new(1,0,0)
Add Comment
Please, Sign In to add comment