Advertisement
MyNewName

Untitled

Mar 13th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.28 KB | None | 0 0
  1.  
  2. --Converted with ttyyuu12345's model to script plugin v4
  3. function sandbox(var,func)
  4. local env = getfenv(func)
  5. local newenv = setmetatable({},{
  6. __index = function(self,k)
  7. if k=="script" then
  8. return var
  9. else
  10. return env[k]
  11. end
  12. end,
  13. })
  14. setfenv(func,newenv)
  15. return func
  16. end
  17. cors = {}
  18. mas = Instance.new("Model",game:GetService("Lighting"))
  19. LocalScript0 = Instance.new("LocalScript")
  20. LocalScript1 = Instance.new("LocalScript")
  21. Sound2 = Instance.new("Sound")
  22. ParticleEmitter3 = Instance.new("ParticleEmitter")
  23. PointLight4 = Instance.new("PointLight")
  24. LocalScript5 = Instance.new("LocalScript")
  25. Sound6 = Instance.new("Sound")
  26. ParticleEmitter7 = Instance.new("ParticleEmitter")
  27. PointLight8 = Instance.new("PointLight")
  28. LocalScript9 = Instance.new("LocalScript")
  29. Sound10 = Instance.new("Sound")
  30. ParticleEmitter11 = Instance.new("ParticleEmitter")
  31. PointLight12 = Instance.new("PointLight")
  32. BillboardGui13 = Instance.new("BillboardGui")
  33. TextBox14 = Instance.new("TextBox")
  34. Accessory15 = Instance.new("Accessory")
  35. Part16 = Instance.new("Part")
  36. SpecialMesh17 = Instance.new("SpecialMesh")
  37. Attachment18 = Instance.new("Attachment")
  38. Vector3Value19 = Instance.new("Vector3Value")
  39. Weld20 = Instance.new("Weld")
  40. Accessory21 = Instance.new("Accessory")
  41. Part22 = Instance.new("Part")
  42. SpecialMesh23 = Instance.new("SpecialMesh")
  43. Attachment24 = Instance.new("Attachment")
  44. Weld25 = Instance.new("Weld")
  45. LocalScript26 = Instance.new("LocalScript")
  46. ForceField27 = Instance.new("ForceField")
  47. Sound28 = Instance.new("Sound")
  48. LocalScript29 = Instance.new("LocalScript")
  49. ForceField30 = Instance.new("ForceField")
  50. LocalScript31 = Instance.new("LocalScript")
  51. LocalScript0.Name = "Aqua0"
  52. LocalScript0.Parent = mas
  53. table.insert(cors,sandbox(LocalScript0,function()
  54. --[[ Script By reeces44 ]]--
  55. --[[ Thanks For Using ]]--
  56. ------------------------------------
  57. ----------------------------
  58. --------------------
  59.  
  60. ------------------------------------
  61. ------------------------------------
  62. --[[ Instructions ]]--
  63. ------------------------------------
  64. --[[
  65. Press F to start flying
  66. When Flying holding W will speed up.
  67. When Flying Holding S will speed down.
  68.  
  69. Put in StarterPack for everyone to fly.
  70. Alternatively, place the script in any players
  71. backpack to allow them to fly.
  72.  
  73. Have Fun,
  74. reeces44.
  75. --]]
  76. -------------------------------------
  77.  
  78. local player = game.Players.LocalPlayer
  79. local mouse = player:GetMouse()
  80.  
  81. function GetMassRecursive(p)
  82. local mass = 0
  83. for i,v in pairs(p:GetChildren())do
  84. if #v:GetChildren() > 0 then
  85. mass = mass + GetMassRecursive(v)
  86. end
  87. if v:IsA("Part") then
  88. print(v.Name)
  89. mass = mass + v:GetMass()
  90. end
  91. end
  92. return mass
  93. end
  94.  
  95. local wDown = false
  96. local sDown = false
  97. local isFlying = false
  98. local speed = 10
  99. mouse.KeyDown:connect(function(key)
  100. if key == "f" then
  101. if isFlying then
  102. speed = 0
  103. wait()
  104. player.Character.Torso["Anti-Grav"]:Destroy()
  105. player.Character.Torso["FlyingVelocity"]:Destroy()
  106. player.Character.Humanoid.PlatformStand = false
  107. isFlying = false
  108. else
  109. speed = 10
  110. local f = Instance.new("BodyForce")
  111. f.Name = "Anti-Grav"
  112. f.Force = Vector3.new(0,196.2,0) * (GetMassRecursive(player.Character))
  113. f.Parent = player.Character.Torso
  114. local v = Instance.new("BodyVelocity")
  115. v.Velocity = (mouse.Hit.p - player.Character.Torso.Position).unit * 10
  116. v.P = 100
  117. v.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  118. v.Name = "FlyingVelocity"
  119. v.Parent = player.Character.Torso
  120. player.Character.Humanoid.PlatformStand = true
  121. isFlying = true
  122. end
  123. end
  124. if key == "w" then
  125. wDown = true
  126. end
  127. if key == "s" then
  128. sDown = true
  129. end
  130. end)
  131. mouse.KeyUp:connect(function(key)
  132. if key == "w" then
  133. wDown = false
  134. end
  135. if key == "s" then
  136. sDown = false
  137. end
  138. end)
  139. local MAX_SPEED = 200
  140. local MIN_SPEED = 0
  141. spawn(function()
  142. while player.Character.Humanoid.Health > 0 do
  143. if isFlying then
  144. local r = 1+(speed/500)
  145. player.Character:SetPrimaryPartCFrame(CFrame.new(player.Character.PrimaryPart.Position,mouse.Hit.p)*CFrame.Angles(math.pi/r,math.pi,math.pi))
  146. player.Character.Torso.FlyingVelocity.Velocity = (mouse.Hit.p - player.Character.Torso.Position).unit * speed
  147. if wDown then
  148. speed = speed + 5
  149. if speed > MAX_SPEED then
  150. speed = MAX_SPEED
  151. end
  152. elseif sDown then
  153. speed = speed - 5
  154. if speed < MIN_SPEED then
  155. speed = MIN_SPEED
  156. end
  157. end
  158. end
  159.  
  160. game:GetService("RunService").RenderStepped:wait()
  161. end
  162. end)
  163. end))
  164. LocalScript1.Name = "Aqua6"
  165. LocalScript1.Parent = mas
  166. table.insert(cors,sandbox(LocalScript1,function()
  167. local mouse = game.Players.LocalPlayer:GetMouse()
  168. local Character = game.Players.LocalPlayer.Character
  169. local aa = false
  170. function Particles() -- Main Function (Clones the Particle find the Player and put's the Particles into them)
  171. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  172. if v:IsA("BasePart") then
  173. local Sound = script.FatSound:Clone()
  174. Sound.Parent = game.Players.LocalPlayer.Character.Head
  175. local AquaLight = script.AquaLight:Clone()
  176. AquaLight.Parent = game.Players.LocalPlayer.Character.Head
  177. local Particles = script.TestParticles:Clone() -- Name TestParticles to your Particles name.
  178. Particles.Parent = v
  179. Sound:Play()
  180. end
  181. end
  182. end
  183.  
  184. function ParticlesDestroy() -- To remove the Particles again.
  185. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  186. if v:FindFirstChild("TestParticles") then -- Name TestParticles to your Particles name.
  187. v.TestParticles.Enabled = false
  188. v.TestParticles:Destroy()
  189. end
  190. if game.Players.LocalPlayer.Character.Head:FindFirstChild("FatSound") then -- Name TestParticles to your Particles name.
  191. game.Players.LocalPlayer.Character.Head.FatSound:Destroy()
  192. end
  193. end
  194. end
  195.  
  196. function particles(a,b) -- Key Function, just don't touch this.
  197. if a == ("z") then
  198. if aa == true then
  199. aa = false
  200. ParticlesDestroy()
  201. else
  202.  
  203. if aa == false then
  204. aa = true
  205. Particles()
  206. end
  207. end
  208. end
  209. end
  210.  
  211.  
  212. mouse.KeyDown:Connect(particles) -- Connects both Functions.
  213.  
  214. end))
  215. Sound2.Name = "FatSound"
  216. Sound2.Parent = LocalScript1
  217. Sound2.SoundId = "rbxassetid://783504787"
  218. Sound2.Volume = 2
  219. ParticleEmitter3.Name = "TestParticles"
  220. ParticleEmitter3.Parent = LocalScript1
  221. ParticleEmitter3.Transparency = NumberSequence.new(1,0.63749998807907,1)
  222. ParticleEmitter3.Size = NumberSequence.new(0.24999976158142,0.625,0.3125,0.68749964237213,0.43749988079071)
  223. ParticleEmitter3.Color = ColorSequence.new(Color3.new(0.172549, 0.960784, 1),Color3.new(0.172549, 0.960784, 1))
  224. ParticleEmitter3.LightEmission = 2
  225. ParticleEmitter3.Texture = "rbxassetid://337127439"
  226. ParticleEmitter3.Lifetime = NumberRange.new(4, 4)
  227. ParticleEmitter3.Speed = NumberRange.new(4, 4)
  228. ParticleEmitter3.Color = ColorSequence.new(Color3.new(0.172549, 0.960784, 1),Color3.new(0.172549, 0.960784, 1))
  229. PointLight4.Name = "AquaLight"
  230. PointLight4.Parent = LocalScript1
  231. PointLight4.Color = Color3.new(0, 0.984314, 1)
  232. PointLight4.Brightness = 5
  233. PointLight4.Range = 5
  234. PointLight4.Color = Color3.new(0, 0.984314, 1)
  235. LocalScript5.Name = "Aqua1"
  236. LocalScript5.Parent = mas
  237. table.insert(cors,sandbox(LocalScript5,function()
  238. local mouse = game.Players.LocalPlayer:GetMouse()
  239. local Character = game.Players.LocalPlayer.Character
  240. local aa = false
  241. function Particles() -- Main Function (Clones the Particle find the Player and put's the Particles into them)
  242. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  243. if v:IsA("BasePart") then
  244. local Sound = script.FatSound:Clone()
  245. Sound.Parent = game.Players.LocalPlayer.Character.Head
  246. local AquaLight = script.AquaLight:Clone()
  247. AquaLight.Parent = game.Players.LocalPlayer.Character.Head
  248. local Particles = script.TestParticles:Clone() -- Name TestParticles to your Particles name.
  249. Particles.Parent = v
  250. Sound:Play()
  251. end
  252. end
  253. end
  254.  
  255. function ParticlesDestroy() -- To remove the Particles again.
  256. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  257. if v:FindFirstChild("TestParticles") then -- Name TestParticles to your Particles name.
  258. v.TestParticles.Enabled = false
  259. v.TestParticles:Destroy()
  260. end
  261. if game.Players.LocalPlayer.Character.Head:FindFirstChild("FatSound") then -- Name TestParticles to your Particles name.
  262. game.Players.LocalPlayer.Character.Head.FatSound:Destroy()
  263. end
  264. end
  265. end
  266.  
  267. function particles(a,b) -- Key Function, just don't touch this.
  268. if a == ("p") then
  269. if aa == true then
  270. aa = false
  271. ParticlesDestroy()
  272. else
  273.  
  274. if aa == false then
  275. aa = true
  276. Particles()
  277. end
  278. end
  279. end
  280. end
  281.  
  282.  
  283. mouse.KeyDown:Connect(particles) -- Connects both Functions.
  284.  
  285. end))
  286. Sound6.Name = "FatSound"
  287. Sound6.Parent = LocalScript5
  288. Sound6.SoundId = "rbxassetid://782722084"
  289. Sound6.Volume = 2
  290. ParticleEmitter7.Name = "TestParticles"
  291. ParticleEmitter7.Parent = LocalScript5
  292. ParticleEmitter7.Transparency = NumberSequence.new(1,0.63749998807907,1)
  293. ParticleEmitter7.Size = NumberSequence.new(0.24999976158142,0.625,0.3125,0.68749964237213,0.43749988079071)
  294. ParticleEmitter7.Color = ColorSequence.new(Color3.new(0.172549, 0.960784, 1),Color3.new(0.172549, 0.960784, 1))
  295. ParticleEmitter7.LightEmission = 2
  296. ParticleEmitter7.Texture = "rbxassetid://337127439"
  297. ParticleEmitter7.Lifetime = NumberRange.new(4, 4)
  298. ParticleEmitter7.Speed = NumberRange.new(4, 4)
  299. ParticleEmitter7.Color = ColorSequence.new(Color3.new(0.172549, 0.960784, 1),Color3.new(0.172549, 0.960784, 1))
  300. PointLight8.Name = "AquaLight"
  301. PointLight8.Parent = LocalScript5
  302. PointLight8.Color = Color3.new(0, 0.984314, 1)
  303. PointLight8.Brightness = 5
  304. PointLight8.Range = 5
  305. PointLight8.Color = Color3.new(0, 0.984314, 1)
  306. LocalScript9.Name = "Aqua2"
  307. LocalScript9.Parent = mas
  308. table.insert(cors,sandbox(LocalScript9,function()
  309. local mouse = game.Players.LocalPlayer:GetMouse()
  310. local Character = game.Players.LocalPlayer.Character
  311. local aa = false
  312. function Particles() -- Main Function (Clones the Particle find the Player and put's the Particles into them)
  313. local AquaLight = script.AquaLight:Clone()
  314. AquaLight.Parent = game.Players.LocalPlayer.Character.Head
  315. local Particles = script.BillboardGui:Clone() -- Name TestParticles to your Particles name.
  316. Particles.Parent = game.Players.LocalPlayer.Character.Head
  317. end
  318. function ColorHair()
  319. if Character:findFirstChild("BoyAnimeHair_Blue") == nil and Character:findFirstChild("moonWings") == nil then
  320. local hair = script.BoyAnimeHair_Blue:Clone()
  321. hair.Parent = Character
  322. local wings = script.moonWings:Clone()
  323. wings.Parent = Character
  324. end
  325. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  326. if Character:findFirstChild("BoyAnimeHair_Blue") then
  327. Character.BoyAnimeHair_Blue.Handle.Mesh.TextureId = ""
  328. Character.BoyAnimeHair_Blue.Handle.Color = Color3.fromRGB(0, 178, 240)
  329. end
  330. if Character:findFirstChild("moonWings") then
  331. Character.moonWings.Handle.Mesh.TextureId = ""
  332. Character.moonWings.Handle.Color = Color3.fromRGB(89, 178, 240)
  333. Character.moonWings.Handle.Mesh.Offset = Vector3.new(0, 0.5, 0.5)
  334. Character.moonWings.Handle.Mesh.Scale = Vector3.new(7,7,7)
  335. Character.moonWings.Handle.Transparency = 0.4
  336. end
  337. end
  338. end
  339. function ParticlesDestroy() -- To remove the Particles again.
  340. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  341. if game.Players.LocalPlayer.Character.Head:FindFirstChild("BillboardGui") then -- Name TestParticles to your Particles name.
  342. game.Players.LocalPlayer.Character.Head.BillboardGui:Destroy()
  343. end
  344. if game.Players.LocalPlayer.Character.Head:FindFirstChild("AquaLight") then -- Name TestParticles to your Particles name.
  345. game.Players.LocalPlayer.Character.Head.AquaLight:Destroy()
  346. end
  347. end
  348. end
  349.  
  350. function particles(a,b) -- Key Function, just don't touch this.
  351. if a == ("m") then
  352. if aa == true then
  353. aa = false
  354. ParticlesDestroy()
  355. else
  356.  
  357. if aa == false then
  358. aa = true
  359. ColorHair()
  360. Particles()
  361. end
  362. end
  363. end
  364. end
  365.  
  366.  
  367. mouse.KeyDown:Connect(particles) -- Connects both Functions.
  368.  
  369. end))
  370. Sound10.Name = "FatSound"
  371. Sound10.Parent = LocalScript9
  372. Sound10.SoundId = "rbxassetid://782722084"
  373. Sound10.Volume = 2
  374. ParticleEmitter11.Name = "TestParticles"
  375. ParticleEmitter11.Parent = LocalScript9
  376. ParticleEmitter11.Transparency = NumberSequence.new(1,0.63749998807907,1)
  377. ParticleEmitter11.Size = NumberSequence.new(0.24999976158142,0.625,0.3125,0.68749964237213,0.43749988079071)
  378. ParticleEmitter11.Color = ColorSequence.new(Color3.new(0.172549, 0.960784, 1),Color3.new(0.172549, 0.960784, 1))
  379. ParticleEmitter11.LightEmission = 2
  380. ParticleEmitter11.Texture = "rbxassetid://337127439"
  381. ParticleEmitter11.Lifetime = NumberRange.new(4, 4)
  382. ParticleEmitter11.Speed = NumberRange.new(4, 4)
  383. ParticleEmitter11.Color = ColorSequence.new(Color3.new(0.172549, 0.960784, 1),Color3.new(0.172549, 0.960784, 1))
  384. PointLight12.Name = "AquaLight"
  385. PointLight12.Parent = LocalScript9
  386. PointLight12.Color = Color3.new(0, 0.984314, 1)
  387. PointLight12.Brightness = 5
  388. PointLight12.Range = 5
  389. PointLight12.Color = Color3.new(0, 0.984314, 1)
  390. BillboardGui13.Parent = LocalScript9
  391. BillboardGui13.Size = UDim2.new(40, 40, 1, 1)
  392. BillboardGui13.Active = true
  393. BillboardGui13.StudsOffset = Vector3.new(0, 3, 0)
  394. TextBox14.Name = "Text"
  395. TextBox14.Parent = BillboardGui13
  396. TextBox14.Transparency = 1
  397. TextBox14.Size = UDim2.new(1, 1, 1, 1)
  398. TextBox14.Text = "Aquamarine"
  399. TextBox14.BackgroundColor3 = Color3.new(0, 0, 0)
  400. TextBox14.BackgroundTransparency = 1
  401. TextBox14.BorderColor3 = Color3.new(0, 0, 0)
  402. TextBox14.ClearTextOnFocus = false
  403. TextBox14.MultiLine = true
  404. TextBox14.Font = Enum.Font.Fantasy
  405. TextBox14.FontSize = Enum.FontSize.Size14
  406. TextBox14.TextColor3 = Color3.new(0.164706, 0.960784, 1)
  407. TextBox14.TextScaled = true
  408. TextBox14.TextStrokeColor3 = Color3.new(0.0784314, 0.141176, 0.427451)
  409. TextBox14.TextStrokeTransparency = 0
  410. TextBox14.TextWrapped = true
  411. TextBox14.TextYAlignment = Enum.TextYAlignment.Top
  412. Accessory15.Name = "BoyAnimeHair_Blue"
  413. Accessory15.Parent = LocalScript9
  414. Accessory15.AttachmentPos = Vector3.new(-0.0599999987, 0.560000002, -0.100000001)
  415. Part16.Name = "Handle"
  416. Part16.Parent = Accessory15
  417. Part16.CanCollide = false
  418. Part16.Locked = true
  419. Part16.FormFactor = Enum.FormFactor.Symmetric
  420. Part16.Size = Vector3.new(1.4200002, 0.870000005, 1.40999985)
  421. Part16.CFrame = CFrame.new(0.0599999949, 4.44000006, 0.100272246, 1, -7.87137555e-09, 0, 7.87137555e-09, 1, 4.1444221e-16, -3.26223034e-24, -4.1444221e-16, 1)
  422. Part16.BottomSurface = Enum.SurfaceType.Smooth
  423. Part16.TopSurface = Enum.SurfaceType.Smooth
  424. Part16.Position = Vector3.new(0.0599999949, 4.44000006, 0.100272246)
  425. SpecialMesh17.Parent = Part16
  426. SpecialMesh17.MeshId = "http://www.roblox.com/asset/?id=398987591 "
  427. SpecialMesh17.Scale = Vector3.new(0.819999993, 0.819999993, 0.819999993)
  428. SpecialMesh17.TextureId = "http://www.roblox.com/asset/?id=398618334"
  429. SpecialMesh17.MeshType = Enum.MeshType.FileMesh
  430. SpecialMesh17.Scale = Vector3.new(0.819999993, 0.819999993, 0.819999993)
  431. Attachment18.Name = "HairAttachment"
  432. Attachment18.Parent = Part16
  433. Attachment18.Rotation = Vector3.new(2.37457894e-14, -1.86912034e-22, -4.50996595e-07)
  434. Attachment18.CFrame = CFrame.new(-0.0599999912, 0.659999847, -0.100272246, 1, 7.87137555e-09, -3.26223034e-24, -7.87137555e-09, 1, -4.1444221e-16, 0, 4.1444221e-16, 1)
  435. Attachment18.Position = Vector3.new(-0.0599999912, 0.659999847, -0.100272246)
  436. Attachment18.Axis = Vector3.new(1, -7.87137555e-09, 0)
  437. Attachment18.Orientation = Vector3.new(2.37457894e-14, -1.86912034e-22, -4.50996595e-07)
  438. Vector3Value19.Name = "OriginalSize"
  439. Vector3Value19.Parent = Part16
  440. Vector3Value19.Value = Vector3.new(1.4200002, 0.870000005, 1.40999985)
  441. Weld20.Name = "AccessoryWeld"
  442. Weld20.Parent = Part16
  443. Weld20.C0 = CFrame.new(-0.0599999912, 0.659999847, -0.100272246, 1, 7.87137555e-09, -3.26223034e-24, -7.87137555e-09, 1, -4.1444221e-16, 0, 4.1444221e-16, 1)
  444. Weld20.C1 = CFrame.new(0, 0.600000024, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  445. Weld20.Part0 = Part16
  446. Accessory21.Name = "moonWings"
  447. Accessory21.Parent = LocalScript9
  448. Accessory21.AttachmentPos = Vector3.new(0, 1.29999995, -1.10000002)
  449. Part22.Name = "Handle"
  450. Part22.Parent = Accessory21
  451. Part22.CanCollide = false
  452. Part22.Locked = true
  453. Part22.FormFactor = Enum.FormFactor.Custom
  454. Part22.Size = Vector3.new(3.80002809, 2.99999952, 1.60000014)
  455. Part22.CFrame = CFrame.new(4.78408427e-31, 3.70000029, 1.10027242, 1, 6.83440315e-31, 0, -6.83440315e-31, 1, 0, 0, 0, 1)
  456. Part22.BottomSurface = Enum.SurfaceType.Smooth
  457. Part22.TopSurface = Enum.SurfaceType.Smooth
  458. Part22.Position = Vector3.new(4.78408427e-31, 3.70000029, 1.10027242)
  459. SpecialMesh23.Parent = Part22
  460. SpecialMesh23.MeshId = "rbxassetid://147982651"
  461. SpecialMesh23.Scale = Vector3.new(4, 4, 4)
  462. SpecialMesh23.TextureId = "rbxassetid://845817136"
  463. SpecialMesh23.MeshType = Enum.MeshType.FileMesh
  464. SpecialMesh23.Scale = Vector3.new(4, 4, 4)
  465. Attachment24.Name = "BodyBackAttachment"
  466. Attachment24.Parent = Part22
  467. Attachment24.Rotation = Vector3.new(0, 0, 3.91582454e-29)
  468. Attachment24.CFrame = CFrame.new(0, -0.700000286, -0.600272417, 1, -6.83440315e-31, 0, 6.83440315e-31, 1, -0, 0, 0, 1)
  469. Attachment24.Position = Vector3.new(0, -0.700000286, -0.600272417)
  470. Attachment24.Axis = Vector3.new(1, 6.83440315e-31, 0)
  471. Attachment24.Orientation = Vector3.new(0, 0, 3.91582454e-29)
  472. Weld25.Name = "AccessoryWeld"
  473. Weld25.Parent = Part22
  474. Weld25.C0 = CFrame.new(0, -0.700000286, -0.600272417, 1, -6.83440315e-31, 0, 6.83440315e-31, 1, -0, 0, 0, 1)
  475. Weld25.C1 = CFrame.new(0, 0, 0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  476. Weld25.Part0 = Part22
  477. LocalScript26.Name = "Aqua3"
  478. LocalScript26.Parent = mas
  479. table.insert(cors,sandbox(LocalScript26,function()
  480. local mouse = game.Players.LocalPlayer:GetMouse()
  481. local Character = game.Players.LocalPlayer.Character
  482. local aa = false
  483. function Particles() -- Main Function (Clones the Particle find the Player and put's the Particles into them)
  484. local AquaLight = script.ForceField:Clone()
  485. AquaLight.Parent = game.Players.LocalPlayer.Character
  486. local hum = Character:findFirstChild("Humanoid")
  487. hum.MaxHealth = 99999999999999999999999999999999999999999999999*math.huge
  488. hum.Health = 99999999999999999999999999999999999999999999999*math.huge
  489. local Sound = script.AquaSound:Clone()
  490. Sound.Parent = game.Players.LocalPlayer.Character.Head
  491. Sound:Play()
  492. end
  493.  
  494. function ParticlesDestroy() -- To remove the Particles again.
  495. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  496. if game.Players.LocalPlayer.Character:findFirstChild("ForceField") then -- Name TestParticles to your Particles name.
  497. game.Players.LocalPlayer.Character.ForceField:Destroy()
  498. end
  499. if game.Players.LocalPlayer.Character.Head:FindFirstChild("AquaSound") then -- Name TestParticles to your Particles name.
  500. game.Players.LocalPlayer.Character.Head.AquaSound:Destroy()
  501. end
  502. end
  503. end
  504.  
  505. function particles(a,b) -- Key Function, just don't touch this.
  506. if a == ("k") then
  507. if aa == true then
  508. aa = false
  509. ParticlesDestroy()
  510. else
  511.  
  512. if aa == false then
  513. aa = true
  514. Particles()
  515. end
  516. end
  517. end
  518. end
  519.  
  520.  
  521. mouse.KeyDown:Connect(particles) -- Connects both Functions.
  522.  
  523. end))
  524. ForceField27.Parent = LocalScript26
  525. Sound28.Name = "AquaSound"
  526. Sound28.Parent = LocalScript26
  527. Sound28.SoundId = "rbxassetid://1507235987"
  528. Sound28.Volume = 10
  529. LocalScript29.Name = "Aqua4"
  530. LocalScript29.Parent = mas
  531. table.insert(cors,sandbox(LocalScript29,function()
  532. local mouse = game.Players.LocalPlayer:GetMouse()
  533. local Character = game.Players.LocalPlayer.Character
  534. local aa = false
  535. function Particles() -- Main Function (Clones the Particle find the Player and put's the Particles into them)
  536. local AquaLight = Instance.new("Explosion")
  537. AquaLight.Parent = game.Players.LocalPlayer.Character.Head
  538. AquaLight.BlastRadius = 30
  539. AquaLight.DestroyJointRadiusPercent = 99999999999999
  540. AquaLight.Position = Character.Torso.Position
  541. local hum = Character:findFirstChild("Humanoid")
  542. hum.MaxHealth = 99999999999999999999999999999999999999999999999*math.huge
  543. hum.Health = 99999999999999999999999999999999999999999999999*math.huge
  544. end
  545.  
  546. function ParticlesDestroy() -- To remove the Particles again.
  547. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  548. if game.Players.LocalPlayer.Character:findFirstChild("ForceField") then -- Name TestParticles to your Particles name.
  549. game.Players.LocalPlayer.Character.ForceField:Destroy()
  550. end
  551. end
  552. end
  553.  
  554. function particles(a,b) -- Key Function, just don't touch this.
  555. if a == ("x") then
  556. if aa == true then
  557. aa = false
  558. --ParticlesDestroy()
  559. else
  560.  
  561. if aa == false then
  562. aa = true
  563. Particles()
  564. end
  565. end
  566. end
  567. end
  568.  
  569.  
  570. mouse.KeyDown:Connect(particles) -- Connects both Functions.
  571.  
  572. end))
  573. ForceField30.Parent = LocalScript29
  574. LocalScript31.Name = "Aqua5"
  575. LocalScript31.Parent = mas
  576. table.insert(cors,sandbox(LocalScript31,function()
  577. scale = 0.75
  578. -------------------------------
  579. p =game.Players.LocalPlayer
  580. c =p.Character
  581. ---------------------------------
  582. p.CharacterAdded:connect(function()
  583. wait(1)
  584. p.CanLoadCharacterAppearance = false
  585. ------------------------------------------------------PHYSICAL SCALING
  586. local joints = c.Torso:GetChildren()
  587. table.insert(joints,c.HumanoidRootPart.RootJoint)
  588. local jointCache = {}
  589.  
  590. for i = 1,#joints do
  591. if joints[i]:IsA("Motor6D") then
  592. joints[i].C0 = CFrame.new(joints[i].C0.p * scale) * CFrame.Angles(joints[i].C0:toEulerAnglesXYZ())
  593. joints[i].C1 = CFrame.new(joints[i].C1.p * scale) * CFrame.Angles(joints[i].C0:toEulerAnglesXYZ())
  594.  
  595. table.insert(jointCache, {joints[i]:Clone(),joints[i].Parent})
  596. joints[i]:Remove()
  597. end
  598. end
  599.  
  600. local children = c:GetChildren()
  601. for i = 1,#children do
  602. if children[i]:IsA("BasePart") then
  603. children[i].FormFactor = "Custom"
  604. children[i].Size = children[i].Size * scale
  605. end
  606. end
  607.  
  608. for i = 1,#jointCache do
  609. jointCache[i][1].Parent = jointCache[i][2]
  610. end
  611.  
  612. --------------------------------------------------------VALUE SCALING
  613. c.Humanoid.WalkSpeed = c.Humanoid.WalkSpeed * scale
  614. c.Humanoid.JumpPower = c.Humanoid.JumpPower * scale/2
  615.  
  616. end)
  617.  
  618. end))
  619. for i,v in pairs(mas:GetChildren()) do
  620. v.Parent = game:GetService("Players").LocalPlayer.Backpack
  621. pcall(function() v:MakeJoints() end)
  622. end
  623. mas:Destroy()
  624. for i,v in pairs(cors) do
  625. spawn(function()
  626. pcall(v)
  627. end)
  628. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement