Advertisement
TheClassicMeme

Untitled

Jun 14th, 2017
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.76 KB | None | 0 0
  1. --[[Edited by lilh3/Frenchy]]--
  2.  
  3. wait(0.016666666666666666)
  4. p = game.Players.LocalPlayer
  5. char = p.Character
  6. torso = char.Torso
  7. neck = char.Torso.Neck
  8. hum = char.Humanoid
  9. hum.MaxHealth = 75000
  10. wait()
  11. hum.Health =hum.MaxHealth
  12. char.Head.face.Texture = "rbxassetid://724826635"
  13.  
  14. --Menacing SFX and music
  15. local plr = game:GetService("Players").LocalPlayer
  16. local deb = false
  17.  
  18. while not plr.Character do wait() end
  19. wait(1)
  20.  
  21. local tstab = {}
  22. local tsstab = {}
  23. local ignlist = {}
  24. local stab = {}
  25.  
  26. function plrIgnore(char)
  27. for i,v in pairs(char:GetChildren()) do
  28. if #v:GetChildren() >= 1 then
  29. plrIgnore(v)
  30. end
  31. table.insert(ignlist,v)
  32. end
  33. end
  34.  
  35. function timeStop(target)
  36. for i,v in pairs(target:GetChildren()) do
  37. if #v:GetChildren() >= 1 then
  38. timeStop(v)
  39. end
  40. local isinign = false
  41. for i,b in pairs(ignlist) do
  42. if b == v then
  43. isinign = true
  44. end
  45. end
  46. if isinign == false then
  47. if v:IsA("Part") or v:IsA("WedgePart") or v:IsA("UnionOperation") then
  48. if v.Anchored == false then
  49. table.insert(tstab,v)
  50. v.Anchored = true
  51. end
  52. end
  53. if v:IsA("Sound") then
  54. local isintab = false
  55. for i,b in pairs(stab) do
  56. if v == b[1] then
  57. isintab = true
  58. end
  59. end
  60. if isintab == false then
  61. table.insert(stab,{v,v.Pitch})
  62. end
  63. end
  64. --[[if v:IsA("Script") or v:IsA("LocalScript") then
  65. if v.Disabled == false then
  66. table.insert(tsstab,v)
  67. v.Disabled = true
  68. end
  69. end]]
  70. end
  71. end
  72. local isinign = false
  73. for i,b in pairs(ignlist) do
  74. if b == target then
  75. isinign = true
  76. end
  77. end
  78. if isinign == false then
  79. if target:IsA("Part") or target:IsA("WedgePart") or target:IsA("UnionOperation") then
  80. if target.Anchored == false then
  81. table.insert(tstab,target)
  82. target.Anchored = true
  83. end
  84. end
  85. if target:IsA("Sound") then
  86. table.insert(stab,{target,target.Pitch})
  87. end
  88. end
  89. end
  90.  
  91. plr:GetMouse().KeyDown:connect(function(key)
  92. if key == "g" then
  93. if deb == true then
  94. deb = false
  95. else
  96. print("...")
  97. deb = true
  98.  
  99. --[[local s = Instance.new("Sound",game:GetService("Workspace"))
  100. s.SoundId = "rbxassetid://849861238"
  101. s.Volume = 0.5
  102. s:Play()
  103.  
  104. wait(1.5)]]
  105.  
  106. print("ZA WARUDO!")
  107. local cc = Instance.new("ColorCorrectionEffect",game:GetService("Lighting"))
  108. spawn(function()
  109. plr.Character.Humanoid.WalkSpeed = 29
  110. plr.Character.Humanoid.JumpPower = 120
  111. local p = Instance.new("Part",plr.Character)
  112. p.Transparency = 0.5
  113. p.BrickColor = BrickColor.new("Institutional white")
  114. p.Size = Vector3.new(0.2,0.2,0.2)
  115. p.Anchored = true
  116. p.CanCollide = false
  117. p.CFrame = plr.Character.Torso.CFrame
  118. local m = Instance.new("SpecialMesh",p)
  119. m.MeshType = Enum.MeshType.Sphere
  120.  
  121. local r = 255
  122. local g = 255
  123. local b = 255
  124. local contrast = 0
  125.  
  126. for i=1,50 do
  127. m.Scale = m.Scale + Vector3.new(50,50,50)
  128. p.Transparency = p.Transparency + 0.5/50
  129. r = r - ((255-42)/50)
  130. g = g - ((255-0)/50)
  131. b = b - ((255-255)/50)
  132. contrast = contrast - 2/50
  133. --cc.TintColor = Color3.fromRGB(r,g,b)
  134. cc.Contrast = contrast
  135. for i,v in pairs(stab) do
  136. v[1].Pitch = v[1].Pitch - (v[2]/50)
  137. end
  138. wait()
  139. end
  140. p:Destroy()
  141. plr.Character.Humanoid.WalkSpeed = 29
  142. plr.Character.Humanoid.JumpPower = 120
  143. end)
  144. local sHp = plr.Character.Humanoid.Health
  145. local hplock = plr.Character.Humanoid.HealthChanged:connect(function()
  146. plr.Character.Humanoid.Health = sHp
  147. end)
  148.  
  149. local aNew = game:GetService("Workspace").ChildAdded:connect(function(c)
  150. timeStop(c)
  151. end)
  152.  
  153. for i,v in pairs(ignlist) do
  154. table.remove(ignlist,1)
  155. end
  156. plrIgnore(plr.Character)
  157. timeStop(game:GetService("Workspace"))
  158. while deb ~= false do wait() end
  159. --spawn(function()
  160. local r = 42
  161. local g = 0
  162. local b = 255
  163. local contrast = -2
  164. for i=1,50 do
  165. r = r + ((255-42)/50)
  166. g = g + ((255-0)/50)
  167. b = b + ((255-255)/50)
  168. contrast = contrast + 2/50
  169. --cc.TintColor = Color3.fromRGB(r,g,b)
  170. cc.Contrast = contrast
  171. for i,v in pairs(stab) do
  172. v[1].Pitch = v[1].Pitch + (v[2]/50)
  173. end
  174. wait()
  175. end
  176. cc:Destroy()
  177. --end)
  178. for i,v in pairs(tstab) do
  179. v.Anchored = false
  180. end
  181. for i,v in pairs(tstab) do
  182. table.remove(tstab,1)
  183. end
  184. --table.foreach(stab,print)
  185. for i,v in pairs(stab) do
  186. table.remove(stab,1)
  187. end
  188. --print("---------")
  189. --table.foreach(stab,print)
  190. --[[for i,v in pairs(tsstab) do
  191. v.Disabled = false
  192. end
  193. for i,v in pairs(tsstab) do
  194. table.remove(tsstab,1)
  195. end]]
  196. hplock:Disconnect()
  197. aNew:Disconnect()
  198. deb = false
  199. end
  200. end
  201. end)
  202.  
  203. local asd = game:service'Players'.LocalPlayer
  204. repeat wait() until asd.Character
  205. local asdchar = asd.Character
  206. local Head = asdchar:findFirstChild("Head")
  207. z = Instance.new("Sound", Head)
  208. z.SoundId = "rbxassetid://0" -- Put Music ID Here.
  209. z.Looped = true
  210. z.Volume = 4
  211. wait(.1)
  212. z:Play()
  213. local transPoints = {NumberSequenceKeypoint.new(0, 0, 0), NumberSequenceKeypoint.new(0.207, 0.594, 0.0187), NumberSequenceKeypoint.new(0.4, 0.55, 0.031), NumberSequenceKeypoint.new(0.57, 0.619, 0.05), NumberSequenceKeypoint.new(0.76, 0.8, 0.0375), NumberSequenceKeypoint.new(1, 1, 0)}
  214. local sizePoints = {NumberSequenceKeypoint.new(0, 1.9, 0), NumberSequenceKeypoint.new(1, 0, 0)}
  215. local Size = NumberSequence.new(sizePoints)
  216. local Transparency = NumberSequence.new(transPoints)
  217. efxBlock = Instance.new("Part", asdchar)
  218. efxBlock.CanCollide = false
  219. efxBlock.Material = "Neon"
  220. efxBlock.FormFactor = "Custom"
  221. efxBlock.Transparency = 1
  222. efxBlock.Size = Vector3.new(0.25, 0.25, 0.25)
  223. local mesh = Instance.new("SpecialMesh", efxBlock)
  224. mesh.MeshType = Enum.MeshType.Sphere
  225. mesh.Scale = Vector3.new(1, 1, 1)
  226. local particles = Instance.new("ParticleEmitter", efxBlock)
  227. particles.LightEmission = 0
  228. particles.Size = Size
  229. particles.Name = "Fire"
  230. particles.Transparency = Transparency
  231. particles.LockedToPart = false
  232. particles.VelocityInheritance = -0.5
  233. particles.LockedToPart = false
  234. particles.Rate = 2
  235. particles.Texture = "rbxassetid://262850915"
  236. particles.Lifetime = NumberRange.new(3, 3)
  237. particles.Speed = NumberRange.new(3, 3)
  238. particles.VelocitySpread = 25
  239. local offset = Vector3.new(0, 0, 0)
  240. local weld = Instance.new("Weld", asdchar.Torso)
  241. weld.Part0 = asdchar.Torso
  242. weld.Part1 = efxBlock
  243. weld.C0 = CFrame.new(offset) * CFrame.Angles(math.rad(-40), math.rad(40), math.rad(40))
  244.  
  245. char["Body Colors"].HeadColor = BrickColor.new("Really black")
  246. char["Body Colors"].TorsoColor = BrickColor.new("Really black")
  247. char["Body Colors"].LeftArmColor = BrickColor.new("Really black")
  248. char["Body Colors"].RightArmColor = BrickColor.new("Really black")
  249. char["Body Colors"].LeftLegColor = BrickColor.new("Really black")
  250. char["Body Colors"].RightLegColor = BrickColor.new("Really black")
  251.  
  252. shirt = Instance.new("Shirt", char)
  253. shirt.Name = "Shirt"
  254. pants = Instance.new("Pants", char)
  255. pants.Name = "Pants"
  256. char.Shirt.ShirtTemplate = "rbxassetid://605158257"
  257. char.Pants.PantsTemplate = "rbxassetid://24673998"
  258.  
  259. local sw1 = Instance.new("Part",hed)
  260. sw1.CanCollide = false
  261. sw1.BrickColor = BrickColor.new("Wheat")
  262.  
  263. local m1 = Instance.new("SpecialMesh",sw1)
  264. m1.MeshId = "rbxassetid://430440803"
  265. m1.Scale = Vector3.new(0.006,0.006,0.006)
  266. local w1 = Instance.new("Weld")
  267.  
  268. local Target = game.Players.LocalPlayer.Name
  269.  
  270. local Character = game.Workspace[Target]
  271.  
  272. local hat = Instance.new('Hat', Character)
  273. hat.AttachmentPos = Vector3.new(0, 1, 0)
  274.  
  275. local handle = Instance.new('Part', hat)
  276. handle.Name = 'Handle'
  277.  
  278. local mesh = Instance.new('SpecialMesh')
  279. mesh.Parent = handle
  280. mesh.MeshId = 'rbxassetid://0'
  281. mesh.TextureId = 'rbxassetid://0'
  282. mesh.Scale = Vector3.new(1, 1, 1)
  283. --
  284.  
  285. local Character = game.Workspace[Target]
  286.  
  287. local hat = Instance.new('Hat', Character)
  288. hat.AttachmentPos = Vector3.new(0, -0.2, 0.3)
  289.  
  290. local handle = Instance.new('Part', hat)
  291. handle.Name = 'Handle'
  292.  
  293. local mesh = Instance.new('SpecialMesh')
  294. mesh.Parent = handle
  295. mesh.MeshId = 'rbxassetid://0'
  296. mesh.TextureId = 'rbxassetid://0'
  297. mesh.Scale = Vector3.new(2, 2, 2)
  298.  
  299. w1.Part1 = sw1
  300. w1.Part0 = hed
  301. w1.Parent = char
  302. w1.C0 = CFrame.new(0,-0.9,0)*CFrame.Angles(math.rad(0),math.pi/2,0)
  303.  
  304. plr = game.Players.LocalPlayer
  305. mse = plr:GetMouse()
  306. sound = Instance.new("Sound", game.Workspace)
  307. sound.SoundId = "https://www.roblox.com/asset/?id=576124533"
  308. sound.Volume = 10
  309. canworld = true
  310. mse.KeyDown:connect(function(key)
  311. key = key:lower()
  312. if key == "g" then
  313. if canworld == false then return end
  314. if canworld then
  315. canworld = false
  316. sound:Play()
  317. local function spawnpart()
  318. sphere = Instance.new("Part")
  319. --game.Debris:AddItem(sphere,3)
  320. local sm = Instance.new("SpecialMesh", sphere)
  321. sm.MeshType = "Sphere"
  322. sphere.Transparency = 1212
  323. sphere.Anchored = true
  324. sphere.CanCollide = false
  325. sphere.Material = "SmoothPlastic"
  326. sphere.BrickColor = BrickColor.new("Lime green")
  327. end
  328.  
  329. local function weld(lol)
  330. local weld = Instance.new("Weld", plr.Character.Torso)
  331. weld.Part0 = plr.Character.Torso
  332. weld.Part1 = lol
  333. weld.C0 = plr.Character.Torso.CFrame:inverse()
  334. weld.C1 = lol.CFrame:inverse()
  335. end
  336. wait(0.1)
  337. spawnpart()
  338. for i, v in pairs(game.Players:GetChildren()) do
  339. t = v.Character:FindFirstChild("Torso")
  340. if t then
  341. t.Anchored = true
  342. plr.Character:FindFirstChild("Torso").Anchored = false
  343. end
  344. RA = v.Character:FindFirstChild("Right Arm")
  345. if RA then
  346. RA.Anchored = true
  347. plr.Character:FindFirstChild("Right Arm").Anchored = false
  348. end
  349. LA = v.Character:FindFirstChild("Left Arm")
  350. if LA then
  351. LA.Anchored = true
  352. plr.Character:FindFirstChild("Left Arm").Anchored = false
  353. end
  354. RL = v.Character:FindFirstChild("Right Leg")
  355. if RL then
  356. RL.Anchored = true
  357. plr.Character:FindFirstChild("Right Leg").Anchored = false
  358. end
  359. LL = v.Character:FindFirstChild("Left Leg")
  360. if LL then
  361. LL.Anchored = true
  362. plr.Character:FindFirstChild("Left Leg").Anchored = false
  363. end
  364. end
  365. weld(sphere)
  366. cce = Instance.new("ColorCorrectionEffect", game.Lighting)
  367. cce.Saturation = -2
  368. --game.Debris:AddItem(cce, 5)
  369. sphere.Parent = game.Workspace
  370. for i = 1,10 do
  371. sphere.Size = sphere.Size + Vector3.new(50,50,50)
  372. wait()
  373. end
  374. --wait(5)
  375.  
  376. end
  377. end
  378. end
  379. )
  380.  
  381. mse.KeyDown:connect(function(key)
  382. key = key:lower()
  383. if key == "h" then
  384. canworld = true
  385. for i, v in pairs(game.Players:GetChildren()) do
  386. t = v.Character:FindFirstChild("Torso")
  387. if t then
  388. t.Anchored = false
  389. end
  390. RA = v.Character:FindFirstChild("Right Arm")
  391. if RA then
  392. RA.Anchored = false
  393. end
  394. LA = v.Character:FindFirstChild("Left Arm")
  395. if LA then
  396. LA.Anchored = false
  397. end
  398. RL = v.Character:FindFirstChild("Right Leg")
  399. if RL then
  400. RL.Anchored = false
  401. end
  402. LL = v.Character:FindFirstChild("Left Leg")
  403. if LL then
  404. LL.Anchored = false
  405. end
  406. end
  407. cce.Saturation = 0
  408. sphere:Destroy()
  409. end
  410. end)
  411.  
  412. Effects = {}
  413. local Player = game.Players.localPlayer
  414. local Character = Player.Character
  415. Character.Archivable = true
  416. AdvancingFortress = Character:Clone()
  417. AdvancingFortress.Parent = Character
  418. torso = AdvancingFortress.Torso
  419. hum = AdvancingFortress.Humanoid
  420. AdvancingFortress.Name = "Advancing Fortress"
  421. pl = AdvancingFortress
  422. for i, v in pairs(AdvancingFortress:GetChildren()) do
  423. if v:IsA("BasePart") then
  424. v.Transparency = 1
  425. end
  426. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement