Advertisement
Dark_EccentricYT

Untitled

Dec 14th, 2016
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.68 KB | None | 0 0
  1. lp=game.Players.LocalPlayer
  2. chr=lp.Character
  3. attacking=false
  4. stealth=false
  5. nova=false
  6. vanish=false
  7. mouse = game.Players.LocalPlayer:GetMouse()
  8. Weld = function(p0,p1,x,y,z,rx,ry,rz,par)
  9. p0.Position = p1.Position
  10. local w = Instance.new('Motor',par or p0)
  11. w.Part0 = p0
  12. w.Part1 = p1
  13. w.C1 = CFrame.new(x,y,z)*CFrame.Angles(rx,ry,rz)
  14. return w
  15. end
  16. function Chat(Object,Text,Color)
  17. local Color = BrickColor.new(Color)
  18. pcall(function()Object:findFirstChild("AtlasText"):Destroy()end)
  19. local G = Instance.new("BillboardGui",Object)
  20. G.Name = "AtlasText"
  21. G.Adornee = Object
  22. G.Size = UDim2.new(3.5,0,2.5,0)
  23. G.AlwaysOnTop = false
  24. G.StudsOffset = Vector3.new(0,3,0)
  25. local Frame = Instance.new("Frame")
  26. Frame.Parent = G
  27. Frame.Size = UDim2.new(1,0,1,0)
  28. Frame.BackgroundTransparency = 1
  29. local Txt = Instance.new("TextLabel",Frame)
  30. Txt.Size = UDim2.new(1,0,1,0)
  31. Txt.Text = Text
  32. Txt.TextScaled = true
  33. Txt.TextWrapped = true
  34. Txt.Font = "SourceSansBold"
  35. Txt.TextColor = Color
  36. Txt.BackgroundTransparency = 1
  37. Txt.ZIndex = 2
  38. Game:GetService("Debris"):AddItem(G,3)
  39. end
  40. galacta=Instance.new("Model",chr)
  41. galacta.Name="Galacta"
  42. hilt=Instance.new("Part",chr.Galacta)
  43. hilt.FormFactor="Custom"
  44. hilt.Size=Vector3.new(0.2,0.2,0.2)
  45. hilt.CanCollide=false
  46. hilt.BrickColor=BrickColor.new("White")
  47. hiltmesh=Instance.new("CylinderMesh",hilt)
  48. hiltmesh.Scale=Vector3.new(2.5,10,2.5)
  49. Weld(hilt,chr['Right Arm'],0,-1,0,4.7,5,0,hilt)
  50. ring=Instance.new("Part",chr.Galacta)
  51. ring.FormFactor="Custom"
  52. ring.Size=Vector3.new(0.2,0.2,0.2)
  53. ring.CanCollide=false
  54. ring.BrickColor=BrickColor.new("Navy blue")
  55. ringmesh=Instance.new("SpecialMesh",ring)
  56. ringmesh.MeshId="rbxassetid://3270017"
  57. ringmesh.Scale=Vector3.new(1,1,1)
  58. Weld(ring,hilt,0,0.9,0,4.7,0,0,ring)
  59. spike=Instance.new("Part",chr.Galacta)
  60. spike.FormFactor="Custom"
  61. spike.Size=Vector3.new(0.2,0.2,0.2)
  62. spike.CanCollide=false
  63. spike.BrickColor=BrickColor.new("Hot pink")
  64. spikemesh=Instance.new("SpecialMesh",spike)
  65. spikemesh.MeshId="rbxassetid://1033714"
  66. spikemesh.Scale=Vector3.new(0.5,5,0.5)
  67. Weld(spike,hilt,0,2.7,0,0,4.7,0,spike)
  68.  
  69.  
  70. mouse.KeyDown:connect(function(key)
  71. key:lower()
  72. if key == "e" and attacking == false then
  73. attacking=true
  74. chr.Humanoid.MaxHealth=math.huge
  75. attacking=false
  76. end
  77. end)
  78. mouse.KeyDown:connect(function(key)
  79. key:lower()
  80. if key =="q" and attacking == false then
  81. attacking = true
  82. chr.Humanoid.MaxHealth=100
  83. attacking=false
  84. end
  85. end)
  86. mouse.KeyDown:connect(function(key)
  87. key:lower()
  88. if key == "b" and attacking == false then
  89. attacking = true
  90. Instance.new("ForceField",chr)
  91. z=Instance.new("Explosion",chr)
  92. z.Position = chr.Torso.Position
  93. wait(5)
  94. attacking = false
  95. chr.ForceField:Destroy()
  96. end
  97. end)
  98. mouse.KeyDown:connect(function(key)
  99. key:lower()
  100. if key == "h" and attacking == false then
  101. chr.Humanoid.Health=chr.Humanoid.MaxHealth
  102. end
  103. end)
  104. mouse.KeyDown:connect(function(key)
  105. key:lower()
  106. if key == "z" and attacking == false then
  107. attacking = true
  108. x=Instance.new("Part",chr)
  109. x.Size=Vector3.new(5,5,5)
  110. x.CanCollide=false
  111. x.Transparency=1
  112. Weld(x,chr.Torso,0,0,0,0,0,0,x)
  113. x.Touched:connect(function(hit)
  114. if hit.Parent:FindFirstChild("Humanoid") then
  115. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(25)
  116. end
  117. end)
  118. wait(5)
  119. x:Destroy()
  120. attacking = false
  121. end
  122. end)
  123. mouse.KeyDown:connect(function(key)
  124. key:lower()
  125. if key == "x" and stealth == false then
  126. stealth=true
  127. for i,v in pairs(chr:GetChildren()) do
  128. if v:IsA("Hat") then
  129. v.Handle.Transparency=1
  130. end
  131. end
  132. for i,v in pairs(chr:GetChildren()) do
  133. if v:IsA("Part") then
  134. v.Transparency=1
  135. end
  136. end
  137. for i,v in pairs(chr.Galacta:GetChildren()) do
  138. if v:IsA("Part") then
  139. v.Transparency=1
  140. end
  141. end
  142. chr.Head.face.Texture="0"
  143. end
  144. end)
  145. mouse.KeyDown:connect(function(key)
  146. key:lower()
  147. if key == "c" and stealth == true then
  148. for i,v in pairs(chr:GetChildren()) do
  149. if v:IsA("Hat") then
  150. v.Handle.Transparency=0
  151. end
  152. end
  153. for i,v in pairs(chr:GetChildren()) do
  154. if v:IsA("Part") then
  155. v.Transparency=0
  156. end
  157. end
  158. chr.HumanoidRootPart.Transparency=1
  159. for i,v in pairs(chr.Galacta:GetChildren()) do
  160. if v:IsA("Part") then
  161. v.Transparency=0
  162. end
  163. end
  164. chr.Head.face.Texture="rbxassetid://7317691"
  165. stealth=false
  166. end
  167. end)
  168. mouse.KeyDown:connect(function(key)
  169. key:lower()
  170. if key == "v" and attacking == false then
  171. for i,v in pairs(Workspace:GetChildren()) do
  172. if v:IsA("Model") then
  173. v:BreakJoints()
  174. end
  175. end
  176. end
  177. end)
  178. mouse.KeyDown:connect(function(key)
  179. key:lower()
  180. if key == "r" and attacking == false then
  181. for i = 1,100 do
  182. e=Instance.new("Explosion",chr)
  183. e.Position = mouse.Hit.p
  184. end
  185. end
  186. end)
  187. mouse.KeyDown:connect(function(key)
  188. key:lower()
  189. if key =="f" and nova == false and attacking == false and vanish == false then
  190. vanish=true
  191. nova=true
  192. attacking=true
  193. stealth=true
  194. for i,v in pairs(chr.Galacta:GetChildren()) do
  195. if v:IsA("Part") then
  196. v.Transparency=1
  197. end
  198. end
  199. Chat(chr.Head,"DISSAPEAR!","Hot pink")
  200. end
  201. end)
  202. mouse.KeyDown:connect(function(key)
  203. key:lower()
  204. if key =="g" and nova == true and stealth == true and vanish == true and attacking == true then
  205. vanish=false
  206. stealth=false
  207. attacking=false
  208. nova=false
  209. for i,v in pairs(chr.Galacta:GetChildren()) do
  210. if v:IsA("Part") then
  211. v.Transparency=0
  212. end
  213. end
  214. Chat(chr.Head,"REAPPEAR!","Hot pink")
  215. end
  216. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement