voidscriptbuilderr

Fe noob stand

Jul 11th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 76.06 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. function TakeDamage(hum, dmg)
  153. hum:TakeDamage(dmg)
  154. end
  155. plr = game.Players.LocalPlayer
  156. repeat
  157. wait(0.4)
  158. until plr.Character
  159. chr = plr.Character
  160. human = chr:FindFirstChild("Humanoid")
  161. human.MaxHealth, human.Health = math.huge, math.huge
  162. mouse = plr:GetMouse()
  163. cam = workspace.CurrentCamera
  164. selected = false
  165. equipd = false
  166. tors = chr.Torso
  167. rarm = chr["Right Arm"]
  168. larm = chr["Left Arm"]
  169. rleg = chr["Right Leg"]
  170. lleg = chr["Left Leg"]
  171. hrp = chr.HumanoidRootPart
  172. hed = chr.Head
  173. anim = human.Animator
  174. activu = false
  175. appeared = false
  176. animpose = nil
  177. POSU = false
  178. local wherto = hrp
  179. local addcfr = CFrame.new(0, 0, 0)
  180. Heartbeat = Instance.new("BindableEvent")
  181. Heartbeat.Name = "Heartbeat"
  182. Heartbeat.Parent = script
  183. frame = 0.03333333333333333
  184. tf = 0
  185. game:GetService("RunService").Heartbeat:connect(function(s, p)
  186. tf = tf + s
  187. if tf >= frame then
  188. for i = 1, math.floor(tf / frame) do
  189. Heartbeat:Fire()
  190. end
  191. tf = tf - frame * math.floor(tf / frame)
  192. end
  193. end)
  194. function swait(num)
  195. if num == 0 or num == nil then
  196. Heartbeat.Event:wait()
  197. else
  198. for i = 1, num do
  199. Heartbeat.Event:wait()
  200. end
  201. end
  202. end
  203. tool = Instance.new("Tool")
  204. tool.CanBeDropped = false
  205. tool.RequiresHandle = false
  206. tool.TextureId = "rbxassetid://291302154"
  207. tool.ToolTip = "NANI"
  208. tool.Name = "AAAAAAAAAAAAAA"
  209. tool.Parent = plr.Backpack
  210. modz = Instance.new("Model")
  211. modz.Name = "efx"
  212. modz.Parent = chr
  213. ZANOOB = Instance.new("Model")
  214. ZANOOB.Name = "THE NOOB"
  215. ZANOOB.Parent = chr
  216. RSC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  217. RSC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  218. LSC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  219. LSC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  220. RHC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  221. RHC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  222. LHC0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  223. RJC1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  224. LHC1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  225. NC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  226. NC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  227. RJC0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  228. RS = tors:FindFirstChild("Right Shoulder")
  229. LS = tors:FindFirstChild("Left Shoulder")
  230. RH = tors:FindFirstChild("Right Hip")
  231. LH = tors:FindFirstChild("Left Hip")
  232. RJ = hrp:FindFirstChild("RootJoint")
  233. N = tors:FindFirstChild("Neck")
  234. cf = CFrame.new
  235. ang = CFrame.Angles
  236. rd = math.rad
  237. rd2 = math.random
  238. function nooutline(p)
  239. p.TopSurface, p.BottomSurface, p.LeftSurface, p.RightSurface, p.FrontSurface, p.BottomSurface = 10, 10, 10, 10, 10, 10
  240. end
  241. function makepart(color, name, reflec, mater, parnt, cfram)
  242. local port = Instance.new("Part")
  243. port.BrickColor = BrickColor.new(color)
  244. port.Name = name
  245. port.Transparency = 1
  246. nooutline(port)
  247. port.Reflectance = reflec
  248. port.Material = mater
  249. port.Anchored = false
  250. port.CanCollide = false
  251. port.Locked = true
  252. port.Size = Vector3.new(0.2, 0.2, 0.2)
  253. port.Parent = parnt
  254. return port
  255. end
  256. function makemesh(meshtype, scale, meshid, parent)
  257. local mes = Instance.new("SpecialMesh")
  258. mes.MeshType = meshtype
  259. mes.Scale = scale
  260. if meshtype == "FileMesh" then
  261. mes.MeshId = meshid
  262. end
  263. mes.Parent = parent
  264. return mes
  265. end
  266. function makemotor(parent, p0, p1, c0, c1)
  267. swait()
  268. local wel = Instance.new("Motor6D")
  269. wel.Part0 = p0
  270. wel.Part1 = p1
  271. wel.C0 = c0
  272. if c1 ~= nil then
  273. wel.C1 = c1
  274. end
  275. wel.Parent = parent
  276. return wel
  277. end
  278. local konodioda = Instance.new("Sound")
  279. konodioda.SoundId = "rbxassetid://276263776"
  280. konodioda.Volume = 3.5
  281. konodioda.Parent = hrp
  282. local bast = Instance.new("Sound")
  283. bast.SoundId = "rbxassetid://616576465"
  284. bast.Volume = 0.5
  285. bast.Parent = hrp
  286. local zaworld = Instance.new("Sound")
  287. zaworld.SoundId = "rbxassetid://616576400"
  288. zaworld.Volume = 0.8
  289. zaworld.Parent = hrp
  290. local wry = Instance.new("Sound")
  291. wry.SoundId = "rbxassetid://721590903"
  292. wry.Volume = 2.75
  293. wry.Parent = hrp
  294. function animo(yep)
  295. if yep == true then
  296. anim.Parent = human
  297. chr.Animate.Disabled = false
  298. elseif yep == false then
  299. chr.Animate.Disabled = true
  300. anim.Parent = nil
  301. end
  302. end
  303. animo(false)
  304. function lerpz(joint, prop, cfrmz, alp)
  305. joint[prop] = joint[prop]:lerp(cfrmz, alp)
  306. end
  307. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  308. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  309. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  310. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  311. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  312. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  313. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  314. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  315. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  316. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  317. function resetlerp(whoever)
  318. if whoever == nil then
  319. RJ.C0 = RJC0
  320. RJ.C1 = RJC1
  321. N.C0 = NC0
  322. N.C1 = NC1
  323. RS.C0 = RSC0
  324. RS.C1 = RSC1
  325. LS.C0 = LSC0
  326. LS.C1 = LSC1
  327. RH.C0 = RHC0
  328. RH.C1 = RHC1
  329. LH.C0 = LHC0
  330. LH.C1 = LHC1
  331. elseif whoever ~= nil then
  332. nRJ.C0 = RJC0
  333. nRJ.C1 = RJC1
  334. nN.C0 = NC0
  335. nN.C1 = NC1
  336. nRS.C0 = RSC0
  337. nRS.C1 = RSC1
  338. nLS.C0 = LSC0
  339. nLS.C1 = LSC1
  340. nRH.C0 = RHC0
  341. nRH.C1 = RHC1
  342. nLH.C0 = LHC0
  343. nLH.C1 = LHC1
  344. end
  345. end
  346. function STANDO(cfr)
  347. local rooto = Instance.new("Part")
  348. nooutline(rooto)
  349. rooto.Name = "HumanoidRootPart"
  350. rooto.Anchored = true
  351. rooto.CFrame = cfr
  352. rooto.Size = Vector3.new(2, 2, 1)
  353. rooto.CanCollide = false
  354. rooto.Locked = true
  355. rooto.Transparency = 1
  356. rooto.Parent = ZANOOB
  357. local head = Instance.new("Part")
  358. nooutline(head)
  359. head.Anchored = false
  360. head.CFrame = rooto.CFrame * CFrame.new(0, 1.5, 0)
  361. head.Size = Vector3.new(2, 1, 1)
  362. head.BrickColor = BrickColor.new("Bright yellow")
  363. head.CanCollide = false
  364. head.Name = "Head"
  365. head.Locked = true
  366. head.Transparency = 1
  367. head.Parent = ZANOOB
  368. local headmesh = makemesh("Head", Vector3.new(1.25, 1.25, 1.25), nil, head)
  369. local headdecal = Instance.new("Decal")
  370. headdecal.Name = "face"
  371. headdecal.Texture = "rbxasset://textures/face.png"
  372. headdecal.Face = "Front"
  373. headdecal.Transparency = 1
  374. headdecal.Parent = head
  375. local torso = Instance.new("Part")
  376. nooutline(torso)
  377. torso.Name = "Torso"
  378. torso.Anchored = false
  379. torso.CFrame = rooto.CFrame * CFrame.new(0, 0, 0)
  380. torso.Size = Vector3.new(2, 1, 1)
  381. torso.BrickColor = BrickColor.new("Bright blue")
  382. torso.CanCollide = false
  383. torso.Transparency = 1
  384. torso.Locked = true
  385. torso.Parent = ZANOOB
  386. local torsomesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/torso.mesh", torso)
  387. local leftarm = Instance.new("Part")
  388. nooutline(leftarm)
  389. leftarm.Anchored = false
  390. leftarm.Name = "Left Arm"
  391. leftarm.CFrame = rooto.CFrame * CFrame.new(1.5, 0, 0)
  392. leftarm.Size = Vector3.new(1, 2, 1)
  393. leftarm.BrickColor = BrickColor.new("Bright yellow")
  394. leftarm.CanCollide = false
  395. leftarm.Transparency = 1
  396. leftarm.Locked = true
  397. leftarm.Parent = ZANOOB
  398. local leftarmmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/leftarm.mesh", leftarm)
  399. local rightarm = Instance.new("Part")
  400. nooutline(rightarm)
  401. rightarm.Anchored = false
  402. rightarm.CFrame = rooto.CFrame * CFrame.new(-1.5, 0, 0)
  403. rightarm.Name = "Right Arm"
  404. rightarm.Size = Vector3.new(1, 2, 1)
  405. rightarm.BrickColor = BrickColor.new("Bright yellow")
  406. rightarm.CanCollide = false
  407. rightarm.Locked = true
  408. rightarm.Transparency = 1
  409. rightarm.Parent = ZANOOB
  410. local rightarmmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/rightarm.mesh", rightarm)
  411. local leftleg = Instance.new("Part")
  412. nooutline(leftleg)
  413. leftleg.Anchored = false
  414. leftleg.CFrame = rooto.CFrame * CFrame.new(1.5, -1.5, 0)
  415. leftleg.Name = "Left Leg"
  416. leftleg.Size = Vector3.new(1, 2, 1)
  417. leftleg.BrickColor = BrickColor.new("Br. yellowish green")
  418. leftleg.CanCollide = false
  419. leftleg.Transparency = 1
  420. leftleg.Locked = true
  421. leftleg.Parent = ZANOOB
  422. local leftlegmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/leftleg.mesh", leftleg)
  423. local rightleg = Instance.new("Part")
  424. nooutline(rightleg)
  425. rightleg.Anchored = false
  426. rightleg.CFrame = rooto.CFrame * CFrame.new(-1.5, -1.5, 0)
  427. rightleg.Name = "Right Leg"
  428. rightleg.Size = Vector3.new(1, 2, 1)
  429. rightleg.BrickColor = BrickColor.new("Br. yellowish green")
  430. rightleg.CanCollide = false
  431. rightleg.Locked = true
  432. rightleg.Transparency = 1
  433. rightleg.Parent = ZANOOB
  434. local rightlegmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/rightleg.mesh", rightleg)
  435. local rootweld = makemotor(rooto, rooto, torso, RJC0, RJC1)
  436. rootweld.Name = "RootJoint"
  437. local neckweld = makemotor(torso, torso, head, NC0, NC1)
  438. neckweld.Name = "Neck"
  439. local rshoulderweld = makemotor(torso, torso, rightarm, RSC0, RSC1)
  440. rshoulderweld.Name = "Right Shoulder"
  441. local lshoulderweld = makemotor(torso, torso, leftarm, LSC0, LSC1)
  442. lshoulderweld.Name = "Left Shoulder"
  443. local rhipweld = makemotor(torso, torso, rightleg, RHC0, RHC1)
  444. rhipweld.Name = "Right Hip"
  445. local lhipweld = makemotor(torso, torso, leftleg, LHC0, LHC1)
  446. lhipweld.Name = "Left Hip"
  447. local pa1 = Instance.new("Part")
  448. nooutline(pa1)
  449. pa1.Anchored = false
  450. pa1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  451. pa1.Name = "pa1"
  452. pa1.Size = Vector3.new(0.2, 0.2, 0.2)
  453. pa1.BrickColor = BrickColor.new("Bright yellow")
  454. pa1.CanCollide = false
  455. pa1.Locked = true
  456. pa1.Transparency = 1
  457. pa1.Parent = ZANOOB
  458. local pa1m = makemesh("FileMesh", Vector3.new(0.55, 0.55, 0.35), "rbxasset://fonts/torso.mesh", pa1)
  459. local pa1w = makemotor(pa1, pa1, torso, ang(rd(0), rd(90), rd(15)) * cf(-0.75, -0.75, 0.3), ang(rd(20), 0, 0))
  460. local pa2 = Instance.new("Part")
  461. nooutline(pa2)
  462. pa2.Anchored = false
  463. pa2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  464. pa2.Name = "pa2"
  465. pa2.Size = Vector3.new(0.2, 0.2, 0.2)
  466. pa2.BrickColor = BrickColor.new("Bright yellow")
  467. pa2.CanCollide = false
  468. pa2.Locked = true
  469. pa2.Transparency = 1
  470. pa2.Parent = ZANOOB
  471. local pa2m = makemesh("FileMesh", Vector3.new(0.55, 0.55, 0.35), "rbxasset://fonts/torso.mesh", pa2)
  472. local pa2w = makemotor(pa2, pa2, torso, ang(rd(0), rd(90), rd(-15)) * cf(0.75, -0.75, 0.3), ang(rd(20), 0, 0))
  473. local pa3 = Instance.new("Part")
  474. nooutline(pa3)
  475. pa3.Anchored = false
  476. pa3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  477. pa3.Name = "pa3"
  478. pa3.Size = Vector3.new(0.2, 0.2, 0.2)
  479. pa3.BrickColor = BrickColor.new("Bright yellow")
  480. pa3.CanCollide = false
  481. pa3.Locked = true
  482. pa3.Transparency = 1
  483. pa3.Parent = ZANOOB
  484. local pa3m = makemesh("FileMesh", Vector3.new(0.45, 0.45, 0.35), "rbxasset://fonts/torso.mesh", pa3)
  485. local pa3w = makemotor(pa3, pa3, torso, ang(rd(0), rd(90), rd(5)) * cf(-0.575, -0.1, 0.275), ang(rd(0), 0, 0))
  486. local pa4 = Instance.new("Part")
  487. nooutline(pa4)
  488. pa4.Anchored = false
  489. pa4.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  490. pa4.Name = "pa4"
  491. pa4.Size = Vector3.new(0.2, 0.2, 0.2)
  492. pa4.BrickColor = BrickColor.new("Bright yellow")
  493. pa4.CanCollide = false
  494. pa4.Locked = true
  495. pa4.Transparency = 1
  496. pa4.Parent = ZANOOB
  497. local pa4m = makemesh("FileMesh", Vector3.new(0.45, 0.45, 0.35), "rbxasset://fonts/torso.mesh", pa4)
  498. local pa4w = makemotor(pa4, pa4, torso, ang(rd(0), rd(90), rd(-5)) * cf(0.575, -0.1, 0.275), ang(rd(0), 0, 0))
  499. local pa5 = Instance.new("Part")
  500. nooutline(pa5)
  501. pa5.Anchored = false
  502. pa5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  503. pa5.Name = "pa5"
  504. pa5.Size = Vector3.new(0.2, 0.2, 0.2)
  505. pa5.BrickColor = BrickColor.new("Bright yellow")
  506. pa5.CanCollide = false
  507. pa5.Locked = true
  508. pa5.Transparency = 1
  509. pa5.Parent = ZANOOB
  510. local pa5m = makemesh("FileMesh", Vector3.new(0.35, 0.35, 0.35), "rbxasset://fonts/torso.mesh", pa5)
  511. local pa5w = makemotor(pa5, pa5, torso, ang(rd(0), rd(90), rd(-15)) * cf(-0.625, 0.375, 0.45), ang(rd(-20), 0, 0))
  512. local pa6 = Instance.new("Part")
  513. nooutline(pa6)
  514. pa6.Anchored = false
  515. pa6.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  516. pa6.Name = "pa6"
  517. pa6.Size = Vector3.new(0.2, 0.2, 0.2)
  518. pa6.BrickColor = BrickColor.new("Bright yellow")
  519. pa6.CanCollide = false
  520. pa6.Locked = true
  521. pa6.Transparency = 1
  522. pa6.Parent = ZANOOB
  523. local pa6m = makemesh("FileMesh", Vector3.new(0.35, 0.35, 0.35), "rbxasset://fonts/torso.mesh", pa6)
  524. local pa6w = makemotor(pa6, pa6, torso, ang(rd(0), rd(90), rd(15)) * cf(0.625, 0.375, 0.45), ang(rd(-20), 0, 0))
  525. local pa7 = Instance.new("Part")
  526. nooutline(pa7)
  527. pa7.Anchored = false
  528. pa7.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  529. pa7.Name = "pa7"
  530. pa7.Size = Vector3.new(0.2, 0.2, 0.2)
  531. pa7.BrickColor = BrickColor.new("Bright yellow")
  532. pa7.CanCollide = false
  533. pa7.Locked = true
  534. pa7.Transparency = 1
  535. pa7.Parent = ZANOOB
  536. local pa7m = makemesh("FileMesh", Vector3.new(1.05, 0.201, 1.1), "rbxasset://fonts/torso.mesh", pa7)
  537. local pa7w = makemotor(pa7, pa7, torso, ang(rd(0), rd(0), rd(0)) * cf(0, 0.8, 0), ang(0, 0, 0))
  538. local pa8 = Instance.new("Part")
  539. nooutline(pa8)
  540. pa8.Anchored = false
  541. pa8.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  542. pa8.Name = "pa8"
  543. pa8.Size = Vector3.new(0.2, 0.2, 0.2)
  544. pa8.BrickColor = BrickColor.new("Bright yellow")
  545. pa8.CanCollide = false
  546. pa8.Locked = true
  547. pa8.Transparency = 1
  548. pa8.Parent = ZANOOB
  549. local pa8m = makemesh("FileMesh", Vector3.new(1.45, 1.45, 1), "rbxassetid://105992239", pa8)
  550. local pa8w = makemotor(pa8, pa8, torso, ang(rd(0), rd(0), rd(0)) * cf(0, 0.8, 0.7), ang(0, 0, 0))
  551. local pa9 = Instance.new("Part")
  552. nooutline(pa9)
  553. pa9.Anchored = false
  554. pa9.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  555. pa9.Name = "pa9"
  556. pa9.Size = Vector3.new(0.2, 0.2, 0.2)
  557. pa9.BrickColor = BrickColor.new("Br. yellowish green")
  558. pa9.CanCollide = false
  559. pa9.Locked = true
  560. pa9.Transparency = 1
  561. pa9.Parent = ZANOOB
  562. local pa9m = makemesh("FileMesh", Vector3.new(1.65, 1.65, 1), "rbxassetid://105992239", pa9)
  563. local pa9w = makemotor(pa9, pa9, torso, ang(rd(0), rd(0), rd(0)) * cf(0, 0.8, 0.675), ang(0, 0, 0))
  564. local pa10 = Instance.new("Part")
  565. nooutline(pa10)
  566. pa10.Anchored = false
  567. pa10.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  568. pa10.Name = "pa10"
  569. pa10.Size = Vector3.new(0.2, 0.2, 0.2)
  570. pa10.BrickColor = BrickColor.new("Bright yellow")
  571. pa10.CanCollide = false
  572. pa10.Locked = true
  573. pa10.Transparency = 1
  574. pa10.Parent = ZANOOB
  575. local pa10m = makemesh("Head", Vector3.new(4.5, 11.5, 4.5), nil, pa10)
  576. local pa10w = makemotor(pa10, pa10, torso, ang(rd(0), rd(0), rd(0)) * cf(0.425, 0, -0.8), ang(0, 0, 0))
  577. local pa11 = Instance.new("Part")
  578. nooutline(pa11)
  579. pa11.Anchored = false
  580. pa11.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  581. pa11.Name = "pa11"
  582. pa11.Size = Vector3.new(0.2, 0.2, 0.2)
  583. pa11.BrickColor = BrickColor.new("Bright yellow")
  584. pa11.CanCollide = false
  585. pa11.Locked = true
  586. pa11.Transparency = 1
  587. pa11.Parent = ZANOOB
  588. local pa11m = makemesh("Head", Vector3.new(4.5, 11.5, 4.5), nil, pa11)
  589. local pa11w = makemotor(pa11, pa11, torso, ang(rd(0), rd(0), rd(0)) * cf(-0.425, 0, -0.8), ang(0, 0, 0))
  590. local raemblem = Instance.new("Part")
  591. nooutline(raemblem)
  592. raemblem.Anchored = false
  593. raemblem.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  594. raemblem.Name = "raemblem"
  595. raemblem.Size = Vector3.new(0.2, 0.2, 0.2)
  596. raemblem.BrickColor = BrickColor.new("Bright yellow")
  597. raemblem.CanCollide = false
  598. raemblem.Locked = true
  599. raemblem.Material = "SmoothPlastic"
  600. raemblem.Transparency = 1
  601. raemblem.Parent = ZANOOB
  602. local raemblemm = makemesh("Brick", Vector3.new(0, 3, 3), nil, raemblem)
  603. local raemblemw = makemotor(raemblem, raemblem, rightarm, ang(rd(0.5), rd(0), rd(0)) * cf(-0.5, -0.5, 0), ang(rd(0), 0, 0))
  604. local emmes = Instance.new("Decal")
  605. emmes.Texture = "rbxassetid://291302154"
  606. emmes.Transparency = 1
  607. emmes.Face = "Right"
  608. emmes.Name = "embe"
  609. emmes.Parent = raemblem
  610. local ra1 = Instance.new("Part")
  611. nooutline(ra1)
  612. ra1.Anchored = false
  613. ra1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  614. ra1.Name = "ra1"
  615. ra1.Size = Vector3.new(0.2, 0.2, 0.2)
  616. ra1.BrickColor = BrickColor.new("Bright yellow")
  617. ra1.CanCollide = false
  618. ra1.Locked = true
  619. ra1.Transparency = 1
  620. ra1.Parent = ZANOOB
  621. local ra1m = makemesh("FileMesh", Vector3.new(1.1, 0.25, 1.1), "rbxasset://fonts/rightarm.mesh", ra1)
  622. local ra1w = makemotor(ra1, ra1, rightarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
  623. local ra2 = Instance.new("Part")
  624. nooutline(ra2)
  625. ra2.Anchored = false
  626. ra2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  627. ra2.Name = "ra2"
  628. ra2.Size = Vector3.new(0.2, 0.2, 0.2)
  629. ra2.BrickColor = BrickColor.new("Bright yellow")
  630. ra2.CanCollide = false
  631. ra2.Locked = true
  632. ra2.Transparency = 1
  633. ra2.Parent = ZANOOB
  634. local ra2m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.1), "rbxasset://fonts/rightarm.mesh", ra2)
  635. local ra2w = makemotor(ra2, ra2, rightarm, ang(rd(0), rd(0), rd(0)) * cf(-0.175, 0.9, 0), ang(rd(0), 0, 0))
  636. local ra3 = Instance.new("Part")
  637. nooutline(ra3)
  638. ra3.Anchored = false
  639. ra3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  640. ra3.Name = "ra3"
  641. ra3.Size = Vector3.new(0.2, 0.2, 0.2)
  642. ra3.BrickColor = BrickColor.new("Br. yellowish green")
  643. ra3.CanCollide = false
  644. ra3.Locked = true
  645. ra3.Transparency = 1
  646. ra3.Parent = ZANOOB
  647. local ra3m = makemesh("FileMesh", Vector3.new(1.15, 0.2, 1.15), "rbxasset://fonts/rightarm.mesh", ra3)
  648. local ra3w = makemotor(ra3, ra3, rightarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
  649. local ra4 = Instance.new("Part")
  650. nooutline(ra4)
  651. ra4.Anchored = false
  652. ra4.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  653. ra4.Name = "ra4"
  654. ra4.Size = Vector3.new(0.2, 0.2, 0.2)
  655. ra4.BrickColor = BrickColor.new("Br. yellowish green")
  656. ra4.CanCollide = false
  657. ra4.Locked = true
  658. ra4.Transparency = 1
  659. ra4.Parent = ZANOOB
  660. local ra4m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.15), "rbxasset://fonts/rightarm.mesh", ra4)
  661. local ra4w = makemotor(ra4, ra4, rightarm, ang(rd(0), rd(0), rd(0)) * cf(-0.2, 0.85, 0), ang(rd(0), 0, 0))
  662. local ra5 = Instance.new("Part")
  663. nooutline(ra5)
  664. ra5.Anchored = false
  665. ra5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  666. ra5.Name = "ra5"
  667. ra5.Size = Vector3.new(0.2, 0.2, 0.2)
  668. ra5.BrickColor = BrickColor.new("Bright yellow")
  669. ra5.CanCollide = false
  670. ra5.Locked = true
  671. ra5.Transparency = 1
  672. ra5.Parent = ZANOOB
  673. local ra5m = makemesh("FileMesh", Vector3.new(1.35, 1.35, 1.35), "rbxassetid://105992239", ra5)
  674. local ra5w = makemotor(ra5, ra5, rightarm, ang(rd(0), rd(90), rd(0)) * cf(-0.65, 0.7, 0), ang(rd(0), 0, 0))
  675. local la1 = Instance.new("Part")
  676. nooutline(la1)
  677. la1.Anchored = false
  678. la1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  679. la1.Name = "la1"
  680. la1.Size = Vector3.new(0.2, 0.2, 0.2)
  681. la1.BrickColor = BrickColor.new("Bright yellow")
  682. la1.CanCollide = false
  683. la1.Locked = true
  684. la1.Transparency = 1
  685. la1.Parent = ZANOOB
  686. local la1m = makemesh("FileMesh", Vector3.new(1.1, 0.25, 1.1), "rbxasset://fonts/rightarm.mesh", la1)
  687. local la1w = makemotor(la1, la1, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
  688. local la2 = Instance.new("Part")
  689. nooutline(la2)
  690. la2.Anchored = false
  691. la2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  692. la2.Name = "la2"
  693. la2.Size = Vector3.new(0.2, 0.2, 0.2)
  694. la2.BrickColor = BrickColor.new("Bright yellow")
  695. la2.CanCollide = false
  696. la2.Locked = true
  697. la2.Transparency = 1
  698. la2.Parent = ZANOOB
  699. local la2m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.1), "rbxasset://fonts/rightarm.mesh", la2)
  700. local la2w = makemotor(la2, la2, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0.175, 0.9, 0), ang(rd(0), 0, 0))
  701. local la3 = Instance.new("Part")
  702. nooutline(la3)
  703. la3.Anchored = false
  704. la3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  705. la3.Name = "la3"
  706. la3.Size = Vector3.new(0.2, 0.2, 0.2)
  707. la3.BrickColor = BrickColor.new("Br. yellowish green")
  708. la3.CanCollide = false
  709. la3.Locked = true
  710. la3.Transparency = 1
  711. la3.Parent = ZANOOB
  712. local la3m = makemesh("FileMesh", Vector3.new(1.15, 0.2, 1.15), "rbxasset://fonts/rightarm.mesh", la3)
  713. local la3w = makemotor(la3, la3, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
  714. local la4 = Instance.new("Part")
  715. nooutline(la4)
  716. la4.Anchored = false
  717. la4.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  718. la4.Name = "la4"
  719. la4.Size = Vector3.new(0.2, 0.2, 0.2)
  720. la4.BrickColor = BrickColor.new("Br. yellowish green")
  721. la4.CanCollide = false
  722. la4.Locked = true
  723. la4.Transparency = 1
  724. la4.Parent = ZANOOB
  725. local la4m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.15), "rbxasset://fonts/rightarm.mesh", la4)
  726. local la4w = makemotor(la4, la4, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0.2, 0.85, 0), ang(rd(0), 0, 0))
  727. local la5 = Instance.new("Part")
  728. nooutline(la5)
  729. la5.Anchored = false
  730. la5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  731. la5.Name = "la5"
  732. la5.Size = Vector3.new(0.2, 0.2, 0.2)
  733. la5.BrickColor = BrickColor.new("Bright yellow")
  734. la5.CanCollide = false
  735. la5.Locked = true
  736. la5.Transparency = 1
  737. la5.Parent = ZANOOB
  738. local la5m = makemesh("FileMesh", Vector3.new(1.35, 1.35, 1.35), "rbxassetid://105992239", la5)
  739. local la5w = makemotor(la5, la5, leftarm, ang(rd(0), rd(90), rd(0)) * cf(0.4, 0.7, 0), ang(rd(0), 0, 0))
  740. local ll1 = Instance.new("Part")
  741. nooutline(ll1)
  742. ll1.Anchored = false
  743. ll1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  744. ll1.Name = "ll1"
  745. ll1.Size = Vector3.new(0.2, 0.2, 0.2)
  746. ll1.BrickColor = BrickColor.new("Br. yellowish green")
  747. ll1.CanCollide = false
  748. ll1.Locked = true
  749. ll1.Transparency = 1
  750. ll1.Parent = ZANOOB
  751. local ll1m = makemesh("FileMesh", Vector3.new(0.5, 0.35, 0.2), "rbxasset://fonts/leftleg.mesh", ll1)
  752. local ll1w = makemotor(ll1, ll1, leftleg, ang(rd(7), rd(30), rd(20)) * cf(-0.25, -0.3, 0.525), ang(0, 0, 0))
  753. local ll2 = Instance.new("Part")
  754. nooutline(ll2)
  755. ll2.Anchored = false
  756. ll2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  757. ll2.Name = "ll2"
  758. ll2.Size = Vector3.new(0.2, 0.2, 0.2)
  759. ll2.BrickColor = BrickColor.new("Br. yellowish green")
  760. ll2.CanCollide = false
  761. ll2.Locked = true
  762. ll2.Transparency = 1
  763. ll2.Parent = ZANOOB
  764. local ll2m = makemesh("FileMesh", Vector3.new(0.5, 0.35, 0.2), "rbxasset://fonts/leftleg.mesh", ll2)
  765. local ll2w = makemotor(ll2, ll2, leftleg, ang(rd(7), rd(-30), rd(-20)) * cf(0.25, -0.3, 0.525), ang(0, 0, 0))
  766. local ll3 = Instance.new("Part")
  767. nooutline(ll3)
  768. ll3.Anchored = false
  769. ll3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  770. ll3.Name = "ll3"
  771. ll3.Size = Vector3.new(0.2, 0.2, 0.2)
  772. ll3.BrickColor = BrickColor.new("Bright yellow")
  773. ll3.CanCollide = false
  774. ll3.Locked = true
  775. ll3.Transparency = 1
  776. ll3.Parent = ZANOOB
  777. local ll3m = makemesh("FileMesh", Vector3.new(1.4, 1.4, 1.3), "rbxassetid://105992239", ll3)
  778. local ll3w = makemotor(ll3, ll3, leftleg, ang(rd(15), rd(0), rd(0)) * cf(0, 0, 0.7), ang(0, 0, 0))
  779. local rr1 = Instance.new("Part")
  780. nooutline(rr1)
  781. rr1.Anchored = false
  782. rr1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  783. rr1.Name = "rr1"
  784. rr1.Size = Vector3.new(0.2, 0.2, 0.2)
  785. rr1.BrickColor = BrickColor.new("Br. yellowish green")
  786. rr1.CanCollide = false
  787. rr1.Locked = true
  788. rr1.Transparency = 1
  789. rr1.Parent = ZANOOB
  790. local rr1m = makemesh("FileMesh", Vector3.new(0.5, 0.35, 0.2), "rbxasset://fonts/leftleg.mesh", rr1)
  791. local rr1w = makemotor(rr1, rr1, rightleg, ang(rd(7), rd(30), rd(20)) * cf(-0.25, -0.3, 0.525), ang(0, 0, 0))
  792. local rr2 = Instance.new("Part")
  793. nooutline(rr2)
  794. rr2.Anchored = false
  795. rr2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  796. rr2.Name = "rr2"
  797. rr2.Size = Vector3.new(0.2, 0.2, 0.2)
  798. rr2.BrickColor = BrickColor.new("Br. yellowish green")
  799. rr2.CanCollide = false
  800. rr2.Locked = true
  801. rr2.Transparency = 1
  802. rr2.Parent = ZANOOB
  803. local rr2m = makemesh("FileMesh", Vector3.new(0.5, 0.35, 0.2), "rbxasset://fonts/leftleg.mesh", rr2)
  804. local rr2w = makemotor(rr2, rr2, rightleg, ang(rd(7), rd(-30), rd(-20)) * cf(0.25, -0.3, 0.525), ang(0, 0, 0))
  805. local rr3 = Instance.new("Part")
  806. nooutline(rr3)
  807. rr3.Anchored = false
  808. rr3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
  809. rr3.Name = "rr3"
  810. rr3.Size = Vector3.new(0.2, 0.2, 0.2)
  811. rr3.BrickColor = BrickColor.new("Bright yellow")
  812. rr3.CanCollide = false
  813. rr3.Locked = true
  814. rr3.Transparency = 1
  815. rr3.Parent = ZANOOB
  816. local rr3m = makemesh("FileMesh", Vector3.new(1.4, 1.4, 1.3), "rbxassetid://105992239", rr3)
  817. local rr3w = makemotor(rr3, rr3, rightleg, ang(rd(15), rd(0), rd(0)) * cf(0, 0, 0.7), ang(0, 0, 0))
  818. return ZANOOB
  819. end
  820. local thenoob = STANDO(hrp.CFrame * CFrame.new(0, 0, 0))
  821. coroutine.resume(coroutine.create(function()
  822. local rot = thenoob.HumanoidRootPart
  823. repeat
  824. swait()
  825. rot.CFrame = rot.CFrame:lerp(wherto.CFrame * addcfr, 0.5)
  826. until rot == nil
  827. end))
  828. local rot = thenoob.HumanoidRootPart
  829. local ntorso = thenoob:FindFirstChild("Torso")
  830. local rightarm = thenoob:FindFirstChild("Right Arm")
  831. local leftarm = thenoob:FindFirstChild("Left Arm")
  832. local leftleg = thenoob:FindFirstChild("Left Leg")
  833. local rightleg = thenoob:FindFirstChild("Right Leg")
  834. local head = thenoob:FindFirstChild("Head")
  835. local face = head:FindFirstChild("face")
  836. local emblem = thenoob:FindFirstChild("raemblem"):FindFirstChild("embe")
  837. local embpart = thenoob:FindFirstChild("raemblem")
  838. local nRJ = rot:FindFirstChild("RootJoint")
  839. local nN = ntorso:FindFirstChild("Neck")
  840. local nRS = ntorso:FindFirstChild("Right Shoulder")
  841. local nLS = ntorso:FindFirstChild("Left Shoulder")
  842. local nRH = ntorso:FindFirstChild("Right Hip")
  843. local nLH = ntorso:FindFirstChild("Left Hip")
  844. function standappear(nbz)
  845. if selected == false or activu == true then
  846. return
  847. end
  848. if appeared == false then
  849. appeared = true
  850. wherto = hrp
  851. addcfr = cf(-2, 1, 2)
  852. local apear = Instance.new("Sound")
  853. apear.SoundId = "rbxassetid://463010917"
  854. apear.Parent = rot
  855. apear.Volume = 1.25
  856. game.Debris:AddItem(apear, 1.5)
  857. apear:Play()
  858. for _, n in pairs(nbz:GetChildren()) do
  859. coroutine.resume(coroutine.create(function()
  860. for _ = 1, 5 do
  861. if n ~= rot and n ~= embpart and n.ClassName ~= "Sound" then
  862. swait()
  863. n.Transparency = n.Transparency - 0.2
  864. face.Transparency = face.Transparency - 0.2
  865. emblem.Transparency = emblem.Transparency - 0.2
  866. end
  867. end
  868. if n ~= rot and n ~= embpart then
  869. n.Transparency = 0
  870. end
  871. face.Transparency = 0
  872. emblem.Transparency = 0
  873. end))
  874. end
  875. elseif appeared == true then
  876. appeared = false
  877. wherto = hrp
  878. addcfr = cf(0, 0, 0)
  879. for _, n in pairs(nbz:GetChildren()) do
  880. coroutine.resume(coroutine.create(function()
  881. for _ = 1, 5 do
  882. if n ~= rot and n ~= embpart then
  883. swait()
  884. n.Transparency = n.Transparency + 0.2
  885. face.Transparency = face.Transparency + 0.2
  886. emblem.Transparency = emblem.Transparency + 0.2
  887. end
  888. end
  889. if n ~= rot and n ~= embpart then
  890. n.Transparency = 1
  891. end
  892. face.Transparency = 1
  893. emblem.Transparency = 1
  894. end))
  895. end
  896. end
  897. end
  898. function THREATENING()
  899. if selected == false or activu == true then
  900. return
  901. end
  902. if POSU == false then
  903. POSU = true
  904. human.WalkSpeed = 0
  905. local d = Instance.new("ParticleEmitter")
  906. d.Name = "MENACINGU"
  907. d.Lifetime = NumberRange.new(1)
  908. d.Rate = 2
  909. d.Texture = "rbxassetid://298768656"
  910. d.VelocitySpread = 60
  911. d.Parent = tors
  912. human:SetStateEnabled(3, false)
  913. local randomoth = math.random(1, 2)
  914. if randomoth == 1 then
  915. repeat
  916. swait()
  917. lerpz(RJ, "C0", RJC0 * cf(0, 0, -0.05) * ang(rd(-5), rd(0), rd(-30)), 0.3)
  918. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(30)), 0.3)
  919. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-20), rd(-20), rd(-5)), 0.3)
  920. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  921. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(140), rd(-70), rd(-50)), 0.3)
  922. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  923. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(-30), rd(10)), 0.3)
  924. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  925. lerpz(LH, "C0", LHC0 * cf(0.3, 0.1, -0.15) * ang(rd(-20), rd(50), rd(10)), 0.3)
  926. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-10)), 0.3)
  927. until POSU == false
  928. elseif randomoth == 2 then
  929. repeat
  930. swait()
  931. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(-2), rd(25)), 0.3)
  932. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(6), rd(0), rd(-50)), 0.3)
  933. lerpz(RS, "C0", RSC0 * cf(-0.25, 0.3, -0.5) * ang(rd(-30), rd(-15), rd(200)), 0.3)
  934. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  935. lerpz(LS, "C0", LSC0 * cf(0.25, 0.3, -0.5) * ang(rd(-32), rd(13), rd(-195)), 0.3)
  936. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  937. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-15), rd(-10)), 0.3)
  938. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  939. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-5), rd(10), rd(-10)), 0.3)
  940. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  941. until POSU == false
  942. end
  943. elseif POSU == true then
  944. POSU = false
  945. human.WalkSpeed = 16
  946. human:SetStateEnabled(3, true)
  947. tors.MENACINGU:Destroy()
  948. activu = true
  949. activu = false
  950. end
  951. end
  952. local EHMMM = 0
  953. function block()
  954. if EHMMM == 50 or selected == false or activu == true then
  955. return
  956. end
  957. if appeared == false then
  958. standappear(thenoob)
  959. end
  960. wherto = hrp
  961. addcfr = cf(0, 0, -3)
  962. local bep = true
  963. local humanshealth = human.Health
  964. activu = true
  965. human:SetStateEnabled(15, false)
  966. local de = mouse.KeyUp:connect(function(key)
  967. if key == "e" then
  968. bep = false
  969. end
  970. end)
  971. local poopes = 0
  972. repeat
  973. swait()
  974. poopes = poopes + 1
  975. human.Health = humanshealth
  976. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(2), rd(0), rd(0)), 0.5)
  977. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(7), rd(0), rd(0)), 0.5)
  978. lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(110), rd(160)), 0.5)
  979. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.5)
  980. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(-110), rd(-160)), 0.5)
  981. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.5)
  982. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  983. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  984. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  985. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  986. until bep == false or poopes > 240
  987. de:Disconnect()
  988. human:SetStateEnabled(15, true)
  989. activu = false
  990. EHMMM = 50
  991. coroutine.resume(coroutine.create(function()
  992. wait(7)
  993. EHMMM = 0
  994. end))
  995. wherto = hrp
  996. addcfr = cf(-2, 1, 2)
  997. end
  998. function MUDA()
  999. if selected == false or activu == true then
  1000. return
  1001. end
  1002. if appeared == false then
  1003. standappear(thenoob)
  1004. wherto = hrp
  1005. addcfr = cf(0, 0, -3.5)
  1006. end
  1007. wry:Stop()
  1008. local bep = true
  1009. activu = true
  1010. wherto = hrp
  1011. addcfr = cf(0, 0, -3.5)
  1012. local function blur(limb)
  1013. coroutine.resume(coroutine.create(function()
  1014. local memedon = {}
  1015. for i = 1, 6 do
  1016. local b1 = Instance.new("Part")
  1017. nooutline(b1)
  1018. b1.Size = Vector3.new(1, 2, 1)
  1019. b1.CFrame = limb.CFrame * CFrame.new(rd2(-5, 5) / 10, rd2(-5, 5) / 10, rd2(-5, 5) / 10)
  1020. b1.CanCollide = false
  1021. b1.BrickColor = limb.BrickColor
  1022. b1.Anchored = true
  1023. b1.Transparency = 0.7
  1024. b1.Locked = true
  1025. b1.Parent = modz
  1026. table.insert(memedon, b1)
  1027. end
  1028. local num = 0
  1029. repeat
  1030. swait()
  1031. num = num % 6 + 1
  1032. memedon[num].CFrame = limb.CFrame * CFrame.new(rd2(-5, 5) / 10, rd2(-5, 5) / 10, rd2(-5, 5) / 10)
  1033. until bep == false
  1034. for i = 1, #memedon do
  1035. swait()
  1036. memedon[i]:Destroy()
  1037. end
  1038. end))
  1039. end
  1040. local de = mouse.KeyUp:connect(function(key)
  1041. if key == "r" then
  1042. bep = false
  1043. end
  1044. end)
  1045. blur(rightarm)
  1046. blur(leftarm)
  1047. local mudodo = Instance.new("Sound")
  1048. mudodo.Volume = 7.5
  1049. mudodo.SoundId = "rbxassetid://612888361"
  1050. mudodo.Looped = true
  1051. mudodo.Parent = hrp
  1052. mudodo:Play()
  1053. repeat
  1054. for _ = 1, 2 do
  1055. swait()
  1056. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(4), rd(4), rd(30)), 0.85)
  1057. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(-2), rd(0), rd(-28)), 0.85)
  1058. lerpz(nRS, "C0", RSC0 * cf(0.5, 0.25, -0.1) * ang(rd(20), rd(20), rd(105)), 0.85)
  1059. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1060. lerpz(nLS, "C0", LSC0 * cf(0.25, 0.1, 0) * ang(rd(30), rd(10), rd(-70)), 0.85)
  1061. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1062. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
  1063. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1064. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
  1065. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1066. end
  1067. hito(rightarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
  1068. for _ = 1, 2 do
  1069. swait()
  1070. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(5), rd(2), rd(-30)), 0.85)
  1071. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(2), rd(0), rd(31)), 0.85)
  1072. lerpz(nRS, "C0", RSC0 * cf(-0.1, 0.05, -0.1) * ang(rd(-10), rd(-30), rd(75)), 0.85)
  1073. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1074. lerpz(nLS, "C0", LSC0 * cf(-0.5, 0.1, -0.2) * ang(rd(-30), rd(10), rd(-70)), 0.85)
  1075. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1076. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
  1077. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1078. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
  1079. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1080. end
  1081. hito(leftarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
  1082. for _ = 1, 2 do
  1083. swait()
  1084. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(3), rd(3), rd(32)), 0.85)
  1085. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(-2), rd(0), rd(-29)), 0.85)
  1086. lerpz(nRS, "C0", RSC0 * cf(0.35, 0.25, 0.1) * ang(rd(-10), rd(-20), rd(95)), 0.85)
  1087. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1088. lerpz(nLS, "C0", LSC0 * cf(0.25, 0.1, 0) * ang(rd(-10), rd(10), rd(-80)), 0.85)
  1089. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1090. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
  1091. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1092. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
  1093. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1094. end
  1095. hito(rightarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
  1096. for _ = 1, 2 do
  1097. swait()
  1098. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(3), rd(-40)), 0.85)
  1099. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(-2), rd(35)), 0.85)
  1100. lerpz(nRS, "C0", RSC0 * cf(-0.1, 0.05, -0.1) * ang(rd(20), rd(-30), rd(65)), 0.85)
  1101. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1102. lerpz(nLS, "C0", LSC0 * cf(-0.5, 0.1, -0.2) * ang(rd(-30), rd(30), rd(-75)), 0.85)
  1103. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1104. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
  1105. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1106. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
  1107. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
  1108. end
  1109. hito(leftarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
  1110. until bep == false or 0 >= human.Health
  1111. de:Disconnect()
  1112. mudodo:Stop()
  1113. wry:Play()
  1114. for _ = 1, 6 do
  1115. swait()
  1116. lerpz(nRJ, "C0", RJC0 * cf(0, 1.25, 0) * ang(rd(0), rd(4), rd(-85)), 0.75)
  1117. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(75)), 0.75)
  1118. lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(100)), 0.75)
  1119. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
  1120. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.75)
  1121. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
  1122. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.75)
  1123. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
  1124. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.75)
  1125. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
  1126. end
  1127. for _ = 1, 7 do
  1128. swait()
  1129. hito(rightarm, 3, 20, 0.35, rot.CFrame.lookVector * 50)
  1130. lerpz(nRJ, "C0", RJC0 * cf(0, -1, 0) * ang(rd(0), rd(10), rd(75)), 0.75)
  1131. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-65)), 0.75)
  1132. lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-60), rd(100)), 0.75)
  1133. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.75)
  1134. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.75)
  1135. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
  1136. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.75)
  1137. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
  1138. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.75)
  1139. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
  1140. end
  1141. swait(5)
  1142. wherto = hrp
  1143. mudodo:Destroy()
  1144. addcfr = cf(-2, 1, 2)
  1145. activu = false
  1146. end
  1147. function cability()
  1148. if selected == false or activu == true then
  1149. return
  1150. end
  1151. if appeared == false then
  1152. standappear(thenoob)
  1153. wherto = hrp
  1154. addcfr = cf(0, 0, -3.75)
  1155. end
  1156. activu = true
  1157. wherto = hrp
  1158. addcfr = cf(0, 0, -3.5)
  1159. local ZAWRUA = Instance.new("Sound")
  1160. ZAWRUA.SoundId = "rbxassetid://257346558"
  1161. ZAWRUA.Volume = 3
  1162. ZAWRUA.Parent = hrp
  1163. ZAWRUA:Play()
  1164. game.Debris:AddItem(ZAWRUA, 2.5)
  1165. local wate = Instance.new("Part")
  1166. nooutline(wate)
  1167. wate.Size = Vector3.new(0.2, 0.2, 0.2)
  1168. wate.Material = "Neon"
  1169. wate.Transparency = 1
  1170. wate.BrickColor = BrickColor.new("Br. yellowish green")
  1171. wate.CFrame = rightarm.CFrame * cf(0, -1.5, 0)
  1172. wate.Anchored = true
  1173. wate.CanCollide = false
  1174. wate.Parent = modz
  1175. local wmesh = makemesh("Sphere", Vector3.new(5, 5, 5), nil, wate)
  1176. coroutine.resume(coroutine.create(function()
  1177. repeat
  1178. swait()
  1179. wate.CFrame = rightarm.CFrame * cf(0, -1, 0)
  1180. wmesh.Scale = wmesh.Scale:lerp(Vector3.new(10, 10, 10), 0.5)
  1181. until not wate
  1182. end))
  1183. coroutine.resume(coroutine.create(function()
  1184. local pt = {}
  1185. for _ = 1, 10 do
  1186. local wp = Instance.new("Part")
  1187. nooutline(wp)
  1188. wp.Size = Vector3.new(0.2, 0.2, 0.2)
  1189. wp.Material = "Neon"
  1190. wp.Transparency = 1
  1191. wp.BrickColor = BrickColor.new("Br. yellowish green")
  1192. wp.CFrame = wate.CFrame * ang(rd2(-100, 100) / 1000, rd2(-100, 100) / 1000, rd2(-100, 100) / 1000) * cf(0, -0.25, 0)
  1193. wp.Anchored = true
  1194. wp.CanCollide = false
  1195. wp.Parent = modz
  1196. local wmz = makemesh("Sphere", Vector3.new(0.5, 2, 0.5), nil, wp)
  1197. table.insert(pt, wp)
  1198. table.insert(pt, wmz)
  1199. end
  1200. for m = 1, 45 do
  1201. swait()
  1202. for _, hey in pairs(pt) do
  1203. if hey.ClassName == "SpecialMesh" then
  1204. hey.Scale = hey.Scale + Vector3.new(0.005, 0.04, 0.005)
  1205. elseif hey.ClassName == "Part" then
  1206. hey.CFrame = wate.CFrame * ang(rd(rd2(-360, 360)), rd(rd2(-360, 360)), rd(rd2(-360, 360))) * cf(0, -m / 25, 0)
  1207. hey.Transparency = hey.Transparency - 0.015
  1208. end
  1209. end
  1210. end
  1211. for m = 45, 50 do
  1212. swait()
  1213. for _, hey in pairs(pt) do
  1214. if hey.ClassName == "SpecialMesh" then
  1215. hey.Scale = hey.Scale + Vector3.new(0.025, 0.08, 0.025)
  1216. elseif hey.ClassName == "Part" then
  1217. hey.CFrame = wate.CFrame * ang(rd(rd2(-360, 360)), rd(rd2(-360, 360)), rd(rd2(-360, 360))) * cf(0, -m / 25, 0)
  1218. hey.Transparency = hey.Transparency + 0.2
  1219. end
  1220. end
  1221. end
  1222. for _, AAA in pairs(pt) do
  1223. if AAA.ClassName == "Part" then
  1224. AAA:Destroy()
  1225. end
  1226. end
  1227. end))
  1228. for _ = 1, 50 do
  1229. swait()
  1230. wmesh.Scale = Vector3.new(9, 9, 9)
  1231. wate.Transparency = wate.Transparency - 0.008
  1232. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(-125)), 0.2)
  1233. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(115)), 0.2)
  1234. lerpz(nRS, "C0", RSC0 * cf(rd2(-1, 1) / 10, rd2(-1, 1) / 10, rd2(-1, 1) / 10) * ang(rd(rd2(-15, -5)), rd(rd2(-25, -15)), rd(rd2(95, 105))), 0.2)
  1235. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
  1236. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.2)
  1237. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
  1238. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.2)
  1239. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
  1240. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.2)
  1241. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
  1242. end
  1243. local pooo = Instance.new("Sound")
  1244. pooo.SoundId = "rbxassetid://610041973"
  1245. pooo.Volume = 3
  1246. pooo.Parent = hrp
  1247. pooo:Play()
  1248. game.Debris:AddItem(pooo, 2.5)
  1249. for _ = 1, 1 do
  1250. swait()
  1251. wate.Transparency = wate.Transparency + 0.15
  1252. lerpz(nRJ, "C0", RJC0 * cf(0, -2, 0) * ang(rd(0), rd(10), rd(35)), 0.5)
  1253. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-30)), 0.5)
  1254. lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-80), rd(100)), 0.5)
  1255. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.5)
  1256. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
  1257. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1258. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
  1259. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1260. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
  1261. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1262. end
  1263. local swoo = Instance.new("Part")
  1264. nooutline(swoo)
  1265. swoo.Size = Vector3.new(0.2, 0.2, 0.2)
  1266. swoo.Material = "Neon"
  1267. swoo.Transparency = 0.2
  1268. swoo.BrickColor = BrickColor.new("Br. yellowish green")
  1269. swoo.CFrame = rightarm.CFrame * ang(rd(0), rd(-15), rd(240)) * cf(1.5, -2.5, 0)
  1270. swoo.Anchored = true
  1271. swoo.CanCollide = false
  1272. swoo.Parent = modz
  1273. local wmesh = makemesh("FileMesh", Vector3.new(0.013333333333333334, 0.015384615384615385, 0.025), "rbxassetid://576041905", swoo)
  1274. local pli = Instance.new("PointLight")
  1275. pli.Brightness = 2
  1276. pli.Color = Color3.new(0.45098039215686275, 1, 0)
  1277. pli.Range = 10
  1278. pli.Shadows = true
  1279. pli.Parent = swoo
  1280. hito(swoo, 5, 40, 0.15, rot.CFrame.lookVector * 80)
  1281. tagability(swoo, 4)
  1282. for _ = 1, 10 do
  1283. swait()
  1284. wate.Transparency = wate.Transparency + 0.05
  1285. swoo.Transparency = swoo.Transparency + 0.075
  1286. pli.Range = pli.Range - 1
  1287. lerpz(nRJ, "C0", RJC0 * cf(0, -3, 0) * ang(rd(0), rd(10), rd(105)), 0.5)
  1288. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-65)), 0.5)
  1289. lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-30), rd(100)), 0.5)
  1290. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.5)
  1291. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
  1292. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1293. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
  1294. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1295. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
  1296. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1297. end
  1298. wate:Destroy()
  1299. swoo:Destroy()
  1300. pli:Destroy()
  1301. swait(15)
  1302. wherto = hrp
  1303. addcfr = cf(-2, 1, 2)
  1304. activu = false
  1305. end
  1306. game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=188959462")
  1307. game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=616594208")
  1308. game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=616576400")
  1309. game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=291088606")
  1310. function THEBEST()
  1311. if selected == false or activu == true or appeared == true or POSU == true then
  1312. return
  1313. end
  1314. local dipperhat = chr:FindFirstChild("DXD_DipperHat")
  1315. local dipperrot
  1316. if dipperhat then
  1317. dipperrot = dipperhat.Handle.HatAttachment.Rotation
  1318. end
  1319. activu = true
  1320. POSU = true
  1321. cam.CameraType = "Scriptable"
  1322. chr.PrimaryPart = hrp
  1323. human.WalkSpeed = 0
  1324. human:SetStateEnabled(3, false)
  1325. local actmus1 = Instance.new("Sound")
  1326. actmus1.SoundId = "rbxassetid://188959462"
  1327. actmus1.Volume = 1.5
  1328. actmus1.RollOffMode = 1
  1329. actmus1.TimePosition = 0
  1330. actmus1.Parent = cam
  1331. local actmus2 = Instance.new("Sound")
  1332. actmus2.SoundId = "rbxassetid://188959462"
  1333. actmus2.Volume = 1.5
  1334. actmus2.RollOffMode = 1
  1335. actmus2.TimePosition = 0
  1336. actmus2.Parent = hrp
  1337. actmus1:Play()
  1338. actmus2:Play()
  1339. local mus1 = Instance.new("Sound")
  1340. mus1.SoundId = "rbxassetid://616594208"
  1341. mus1.Volume = 1.25
  1342. mus1.TimePosition = 0.45
  1343. mus1.Parent = cam
  1344. local mus2 = Instance.new("Sound")
  1345. mus2.SoundId = "rbxassetid://616594208"
  1346. mus2.Volume = 1.25
  1347. mus2.TimePosition = 0.45
  1348. mus2.Parent = hrp
  1349. local zawarudoda = Instance.new("Sound")
  1350. zawarudoda.SoundId = "rbxassetid://616576400"
  1351. zawarudoda.Volume = 2
  1352. zawarudoda.TimePosition = 0.3
  1353. zawarudoda.Parent = hrp
  1354. mus1:Play()
  1355. mus2:Play()
  1356. cam.CoordinateFrame = hrp.CFrame * ang(rd(20), rd(100), rd(0)) * cf(0, 0, 7)
  1357. local regface = hed.face.Texture
  1358. local whogothit, bodyvel
  1359. local function checkhit(partoz, magn)
  1360. for _, guy in pairs(workspace:GetChildren()) do
  1361. if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy ~= chr and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude and not whogothit then
  1362. whogothit = guy
  1363. guy:FindFirstChild("Humanoid").PlatformStand = true
  1364. do
  1365. local derp = Instance.new("BodyPosition")
  1366. derp.MaxForce = Vector3.new(999999999999, 999999999999, 999999999999)
  1367. derp.P = 8000
  1368. derp.D = 500
  1369. derp.Position = hrp.Position + hrp.CFrame.lookVector * 20
  1370. derp.Parent = guy:FindFirstChild("HumanoidRootPart")
  1371. bodyvel = derp
  1372. local derp2 = Instance.new("BodyAngularVelocity")
  1373. derp2.MaxTorque = Vector3.new(999999999999, 999999999999, 999999999999)
  1374. derp2.P = 8000
  1375. derp2.AngularVelocity = Vector3.new(rd2(2, 4), rd2(50, 100), 0)
  1376. derp2.Parent = guy:FindFirstChild("HumanoidRootPart")
  1377. delay(0.1, function()
  1378. derp2:Destroy()
  1379. end)
  1380. bodyvel = derp
  1381. end
  1382. end
  1383. end
  1384. end
  1385. coroutine.resume(coroutine.create(function()
  1386. for _ = 1, 25 do
  1387. swait()
  1388. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(-5), rd(-20)), 0.3)
  1389. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(10), rd(20)), 0.3)
  1390. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(30), rd(-30)), 0.3)
  1391. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1392. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(35), rd(-50), rd(-100)), 0.3)
  1393. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1394. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-20)), 0.3)
  1395. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1396. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
  1397. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1398. end
  1399. for _ = 1, 20 do
  1400. swait()
  1401. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(-5), rd(-20)), 0.3)
  1402. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(10), rd(20)), 0.3)
  1403. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(30), rd(-30)), 0.3)
  1404. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1405. lerpz(LS, "C0", LSC0 * cf(0, 0, 0.4) * ang(rd(70), rd(-60), rd(-100)), 0.3)
  1406. if dipperhat then
  1407. dipperhat.Handle.HatAttachment.Rotation = dipperhat.Handle.HatAttachment.Rotation:lerp(dipperrot + Vector3.new(0, -40, 0), 0.3)
  1408. end
  1409. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1410. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-20)), 0.3)
  1411. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1412. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
  1413. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1414. end
  1415. end))
  1416. repeat
  1417. swait()
  1418. cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(1), rd(0)) * cf(0.15, 0, 0)
  1419. until mus1.TimePosition > 2.9
  1420. mus1:Pause()
  1421. mus2:Pause()
  1422. zawarudoda:Play()
  1423. coroutine.resume(coroutine.create(function()
  1424. for _ = 1, 7 do
  1425. swait()
  1426. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(-5)), 0.4)
  1427. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(2), rd(0)), 0.3)
  1428. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(80), rd(80)), 0.3)
  1429. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1430. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(-80), rd(-70)), 0.3)
  1431. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1432. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.3)
  1433. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1434. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
  1435. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1436. end
  1437. for _ = 1, 16 do
  1438. swait()
  1439. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-15), rd(0), rd(-5)), 0.4)
  1440. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(15), rd(8), rd(0)), 0.3)
  1441. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(-80), rd(80)), 0.3)
  1442. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1443. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(80), rd(-70)), 0.3)
  1444. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1445. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-15)), 0.3)
  1446. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1447. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(15)), 0.3)
  1448. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1449. end
  1450. end))
  1451. repeat
  1452. swait()
  1453. until zawarudoda.TimePosition > 1.4
  1454. zawarudoda:Pause()
  1455. activu = false
  1456. standappear(thenoob)
  1457. wherto = hrp
  1458. addcfr = cf(3, 0.25, -1.5)
  1459. activu = true
  1460. cam.CoordinateFrame = hrp.CFrame * ang(rd(-25), rd(0), rd(0)) * cf(0, 2, 3)
  1461. for _ = 1, 10 do
  1462. swait()
  1463. cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 1.5)
  1464. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(-75)), 0.5)
  1465. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(45)), 0.5)
  1466. lerpz(nRS, "C0", RSC0 * cf(rd2(-1, 1) / 10, rd2(-1, 1) / 10, rd2(-1, 1) / 10) * ang(rd(rd2(-15, -5)), rd(rd2(-25, -15)), rd(rd2(95, 105))), 0.5)
  1467. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1468. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
  1469. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1470. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
  1471. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1472. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
  1473. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1474. end
  1475. wherto = hrp
  1476. addcfr = cf(-3, 0.25, -1.5)
  1477. for _ = 1, 25 do
  1478. swait()
  1479. checkhit(rightarm, 3)
  1480. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(105)), 0.4)
  1481. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(-45)), 0.4)
  1482. lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(100)), 0.4)
  1483. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1484. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.4)
  1485. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1486. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.4)
  1487. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1488. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.4)
  1489. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1490. end
  1491. if whogothit then
  1492. print("derp")
  1493. cam.CoordinateFrame = hrp.CFrame * ang(rd(15), rd(140), rd(0)) * cf(0, 1, 4)
  1494. local laugo = Instance.new("Sound")
  1495. laugo.SoundId = "rbxassetid://291088606"
  1496. laugo.Volume = 1.5
  1497. laugo.Parent = hrp
  1498. game.Debris:AddItem(laugo, 2.5)
  1499. laugo:Play()
  1500. local sda = 0
  1501. local chn = 2
  1502. local cs = math.cos
  1503. for D = 1, 60 do
  1504. swait()
  1505. cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 0.15)
  1506. sda = sda + chn
  1507. lerpz(RJ, "C0", RJC0 * cf(0, 0.75, 1 * cs(sda / 2)) * ang(rd(-40), rd(0), rd(-5)), 0.8 / D)
  1508. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-60 + 40 * cs(sda / 2)), rd(8), rd(0)), 0.8 / D)
  1509. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(-110 + 80 * cs(sda / 2)), rd(80)), 0.8 / D)
  1510. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
  1511. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(110 + 80 * cs(sda / 2)), rd(-70)), 0.8 / D)
  1512. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
  1513. lerpz(RH, "C0", RHC0 * cf(0, -1 * cs(sda / 2), 0) * ang(rd(-10), rd(-10), rd(-40)), 0.8 / D)
  1514. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
  1515. lerpz(LH, "C0", LHC0 * cf(0, -1 * cs(sda / 2), 0) * ang(rd(-10), rd(10), rd(40)), 0.8 / D)
  1516. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
  1517. end
  1518. hed.face.Texture = "rbxassetid://176777497"
  1519. mus1.TimePosition = 2.75
  1520. mus1:Play()
  1521. for C = 1, 30 do
  1522. swait()
  1523. cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, -(0.02 + C / 60))
  1524. sda = sda + chn
  1525. lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(20), rd(0), rd(-5)), 0.05 + C / 31)
  1526. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(30), rd(0), rd(0)), 0.05 + C / 31)
  1527. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-20)), 0.05 + C / 31)
  1528. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
  1529. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(35), rd(-50), rd(-100)), 0.05 + C / 31)
  1530. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
  1531. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(20)), 0.05 + C / 31)
  1532. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
  1533. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(20)), 0.05 + C / 31)
  1534. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
  1535. end
  1536. for _ = 1, 5 do
  1537. swait()
  1538. cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 0.02)
  1539. sda = sda + chn
  1540. lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(20), rd(0), rd(-5)), 0.5)
  1541. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(0)), 0.5)
  1542. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-20)), 0.5)
  1543. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1544. lerpz(LS, "C0", LSC0 * cf(0, 0.25, 0) * ang(rd(60), rd(-60), rd(-100)), 0.5)
  1545. if dipperhat then
  1546. dipperhat.Handle.HatAttachment.Rotation = dipperhat.Handle.HatAttachment.Rotation:lerp(dipperrot + Vector3.new(0, 0, 0), 0.5)
  1547. end
  1548. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1549. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(20)), 0.5)
  1550. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1551. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(20)), 0.5)
  1552. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  1553. end
  1554. wait(2)
  1555. elseif whogothit == nil then
  1556. print("noderp")
  1557. end
  1558. human:SetStateEnabled(3, true)
  1559. activu = false
  1560. standappear(thenoob)
  1561. activu = true
  1562. if dipperhat then
  1563. dipperhat.Handle.HatAttachment.Rotation = dipperrot
  1564. end
  1565. actmus1:Destroy()
  1566. actmus2:Destroy()
  1567. bast:Play()
  1568. if bodyvel then
  1569. bodyvel:Destroy()
  1570. end
  1571. cam.CameraType = "Custom"
  1572. hed.face.Texture = regface
  1573. chr.PrimaryPart = head
  1574. human.WalkSpeed = 16
  1575. activu = false
  1576. POSU = false
  1577. end
  1578. function hito(partoz, magn, dmg, debtim, bodyfdire)
  1579. for _, guy in pairs(workspace:GetChildren()) do
  1580. if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy ~= chr and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude and guy:FindFirstChild("HumanoidRootPart"):FindFirstChild("alabo") == nil then
  1581. do
  1582. local humz = guy:FindFirstChild("Humanoid")
  1583. local horp = guy:FindFirstChild("HumanoidRootPart")
  1584. TakeDamage(humz, dmg)
  1585. local db = Instance.new("StringValue")
  1586. db.Name = "alabo"
  1587. db.Parent = horp
  1588. delay(debtim, function()
  1589. db:Destroy()
  1590. end)
  1591. local b = Instance.new("Part")
  1592. nooutline(b)
  1593. b.Size = Vector3.new(0.2, 0.2, 0.2)
  1594. b.Transparency = 0.25
  1595. b.Anchored = true
  1596. b.CanCollide = false
  1597. b.BrickColor = BrickColor.new("Institutional white")
  1598. b.Locked = true
  1599. b.CFrame = horp.CFrame * CFrame.new(rd2(-1, 1), rd2(-2, 2), rd2(-1, 1))
  1600. b.Parent = modz
  1601. local c = Instance.new("SpecialMesh")
  1602. c.MeshType = "Sphere"
  1603. c.Scale = Vector3.new(3.5, 3.5, 3.5)
  1604. c.Parent = b
  1605. game.Debris:AddItem(b, 1)
  1606. if bodyfdire then
  1607. local boopyve = Instance.new("BodyVelocity")
  1608. boopyve.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  1609. boopyve.P = math.huge
  1610. boopyve.Velocity = bodyfdire
  1611. boopyve.Parent = horp
  1612. game.Debris:AddItem(boopyve, debtim)
  1613. end
  1614. local bet = Instance.new("Sound")
  1615. bet.Pitch = rd2(9, 11) / 10
  1616. bet.Volume = rd2(12, 14) / 10
  1617. bet.SoundId = "rbxassetid://165604684"
  1618. bet.Parent = b
  1619. bet:Play()
  1620. coroutine.resume(coroutine.create(function()
  1621. for _ = 1, 5 do
  1622. swait()
  1623. b.Transparency = b.Transparency + 0.15
  1624. c.Scale = c.Scale + Vector3.new(0.8 * dmg, 0.8 * dmg, 0.8 * dmg)
  1625. end
  1626. end))
  1627. end
  1628. end
  1629. end
  1630. end
  1631. function tagability(partoz, magn)
  1632. for _, guy in pairs(workspace:GetChildren()) do
  1633. if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy ~= chr and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude and guy:FindFirstChild("HumanoidRootPart"):FindFirstChild("derbaba") == nil and guy:FindFirstChildOfClass("ForceField") == nil then
  1634. do
  1635. local humz = guy:FindFirstChild("Humanoid")
  1636. humz.PlatformStand = true
  1637. delay(1, function()
  1638. humz.PlatformStand = false
  1639. end)
  1640. local horp = guy:FindFirstChild("HumanoidRootPart")
  1641. local db = Instance.new("StringValue")
  1642. db.Name = "dedrbaba"
  1643. db.Parent = horp
  1644. local bodyrot = Instance.new("BodyAngularVelocity")
  1645. bodyrot.MaxTorque = Vector3.new(99999, 99999, 99999)
  1646. bodyrot.P = math.huge
  1647. bodyrot.AngularVelocity = Vector3.new(0, 5, 50)
  1648. bodyrot.Parent = horp
  1649. local hL, tL, aL, bL, cL, dL
  1650. game.Debris:AddItem(bodyrot, 0.2)
  1651. if guy:FindFirstChild("Head") then
  1652. hL = guy:FindFirstChild("Head")
  1653. hL.BrickColor = BrickColor.new("Bright yellow")
  1654. end
  1655. if guy:FindFirstChild("Torso") then
  1656. tL = guy:FindFirstChild("Torso")
  1657. tL.BrickColor = BrickColor.new("Bright blue")
  1658. end
  1659. if guy:FindFirstChild("Left Arm") then
  1660. aL = guy:FindFirstChild("Left Arm")
  1661. aL.BrickColor = BrickColor.new("Bright yellow")
  1662. end
  1663. if guy:FindFirstChild("Right Arm") then
  1664. bL = guy:FindFirstChild("Right Arm")
  1665. bL.BrickColor = BrickColor.new("Bright yellow")
  1666. end
  1667. if guy:FindFirstChild("Left Leg") then
  1668. cL = guy:FindFirstChild("Left Leg")
  1669. cL.BrickColor = BrickColor.new("Br. yellowish green")
  1670. end
  1671. if guy:FindFirstChild("Right Leg") then
  1672. dL = guy:FindFirstChild("Right Leg")
  1673. dL.BrickColor = BrickColor.new("Br. yellowish green")
  1674. end
  1675. coroutine.resume(coroutine.create(function()
  1676. if aL then
  1677. aL.Name = "Right Arm"
  1678. wait()
  1679. end
  1680. if bL then
  1681. bL.Name = "Left Leg"
  1682. wait()
  1683. end
  1684. if cL then
  1685. cL.Name = "Left Arm"
  1686. wait()
  1687. end
  1688. if dL then
  1689. dL.Name = "Right Leg"
  1690. end
  1691. end))
  1692. end
  1693. end
  1694. end
  1695. end
  1696. mouse.KeyDown:connect(function(key)
  1697. if human.Health <= 0 then
  1698. return
  1699. end
  1700. if key == "f" then
  1701. standappear(thenoob)
  1702. end
  1703. if key == "r" then
  1704. MUDA()
  1705. end
  1706. if key == "e" then
  1707. block()
  1708. end
  1709. if key == "v" then
  1710. cability()
  1711. end
  1712. if key == "m" and plr.UserId then
  1713. THEBEST()
  1714. end
  1715. if key == "j" then
  1716. THREATENING()
  1717. end
  1718. if key == "k" then
  1719. konodioda:Play()
  1720. end
  1721. if key == "l" then
  1722. bast:Play()
  1723. end
  1724. if key == "p" then
  1725. zaworld:Play()
  1726. end
  1727. end)
  1728. tool.Equipped:connect(function()
  1729. selected = true
  1730. end)
  1731. tool.Unequipped:connect(function()
  1732. selected = false
  1733. end)
  1734. sine = 0
  1735. charge = 1
  1736. cos = math.cos
  1737. game:GetService("RunService").RenderStepped:connect(function()
  1738. if POSU == false then
  1739. local checkfloor = Ray.new(hrp.Position, hrp.CFrame.upVector * -4)
  1740. local checkpart = workspace:FindPartOnRayWithIgnoreList(checkfloor, {chr}, false, false)
  1741. local checkstate = human:GetState()
  1742. if checkstate.Value == 13 then
  1743. animpose = "Sitting"
  1744. elseif hrp.Velocity.y > 1 and checkpart == nil then
  1745. animpose = "Jumping"
  1746. elseif hrp.Velocity.y < -1 and checkpart == nil then
  1747. animpose = "Falling"
  1748. elseif 1 > (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude then
  1749. animpose = "Idle"
  1750. elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude < 35 then
  1751. animpose = "Walking"
  1752. elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude > 35 then
  1753. animpose = "TooFast"
  1754. end
  1755. if animpose == "Idle" then
  1756. sine = sine + charge
  1757. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0.03 * cos(sine / 60)) * ang(rd(0), rd(0), rd(0)), 0.3)
  1758. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(3 - 3 * cos(sine / 60)), rd(0), rd(0)), 0.3)
  1759. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(2 - 2 * cos(sine / 60)), rd(2 - 2 * cos(sine / 60)), rd(2 * cos(sine / 60))), 0.3)
  1760. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1761. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(2 - 2 * cos(sine / 60)), rd(-2 - 2 * cos(sine / 60)), rd(2 * cos(sine / 60))), 0.3)
  1762. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1763. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-3 - 1 * cos(sine / 60)), rd(-5 - 1 * cos(sine / 60)), rd(1 * cos(sine / 60))), 0.3)
  1764. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1765. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-3 - 1 * cos(sine / 60)), rd(5 - 1 * cos(sine / 60)), rd(1 * cos(sine / 60))), 0.3)
  1766. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1767. end
  1768. if animpose == "Walking" then
  1769. sine = sine + charge
  1770. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0.03 * cos(sine / 60)) * ang(rd(0), rd(0), rd(0)), 0.3)
  1771. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(3 - 3 * cos(sine / 60)), rd(0), rd(0)), 0.3)
  1772. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-2 - 2 * cos(sine / 60)), rd(2 - 2 * cos(sine / 60)), rd(30 * cos(sine / 10))), 0.3)
  1773. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1774. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-2 - 2 * cos(sine / 60)), rd(-2 - 2 * cos(sine / 60)), rd(30 * cos(sine / 10))), 0.3)
  1775. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1776. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-1 - 1 * cos(sine / 60)), rd(-1 - 1 * cos(sine / 60)), rd(-30 * cos(sine / 10))), 0.6)
  1777. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1778. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-1 - 1 * cos(sine / 60)), rd(1 - 1 * cos(sine / 60)), rd(-30 * cos(sine / 10))), 0.6)
  1779. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1780. end
  1781. if animpose == "Jumping" then
  1782. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(0)), 0.3)
  1783. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(0)), 0.3)
  1784. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(7), rd(-5), rd(2)), 0.3)
  1785. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1786. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(7), rd(5), rd(-3)), 0.3)
  1787. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1788. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-10)), 0.3)
  1789. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1790. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(20)), 0.3)
  1791. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1792. end
  1793. if animpose == "Falling" then
  1794. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-6), rd(0), rd(0)), 0.3)
  1795. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.3)
  1796. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(7), rd(-5), rd(2)), 0.3)
  1797. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1798. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(7), rd(5), rd(-3)), 0.3)
  1799. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1800. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(10)), 0.3)
  1801. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1802. lerpz(LH, "C0", LHC0 * cf(-0.65, 0.75, 0) * ang(rd(0), rd(0), rd(20)), 0.3)
  1803. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1804. end
  1805. if animpose == "TooFast" then
  1806. lerpz(RJ, "C0", RJC0 * cf(0, 0, -1.5) * ang(rd(20), rd(0), rd(0)), 0.3)
  1807. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.3)
  1808. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-10)), 0.3)
  1809. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1810. lerpz(LS, "C0", LSC0 * cf(0, -0.75, 0) * ang(rd(10), rd(-80), rd(-10)), 0.3)
  1811. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(30), rd(0), rd(0)), 0.3)
  1812. lerpz(RH, "C0", RHC0 * cf(0.75, 1.5, 0) * ang(rd(0), rd(0), rd(30)), 0.3)
  1813. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1814. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(50)), 0.3)
  1815. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1816. end
  1817. if animpose == "Sitting" then
  1818. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1819. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1820. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
  1821. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1822. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-90)), 0.3)
  1823. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1824. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
  1825. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1826. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-90)), 0.3)
  1827. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1828. end
  1829. end
  1830. if appeared == false and activu == false then
  1831. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1832. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1833. lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1834. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1835. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1836. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1837. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1838. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1839. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1840. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1841. elseif appeared == true and activu == false then
  1842. sine = sine + charge
  1843. lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0.05 * cos(sine / 90)) * ang(rd(1 - 1 * cos(sine / 90)), rd(0), rd(-5)), 0.3)
  1844. lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(2 - 2 * cos(sine / 90)), rd(0), rd(4)), 0.3)
  1845. lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(2 * cos(sine / 110)), rd(-3 - 3 * cos(sine / 100)), rd(0)), 0.3)
  1846. lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1847. lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(2 * cos(sine / 110)), rd(3 - 3 * cos(sine / 100)), rd(0)), 0.3)
  1848. lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1849. lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-2 - 2 * cos(sine / 100)), rd(-3 - 3 * cos(sine / 100)), rd(-2 - 2 * cos(sine / 100))), 0.3)
  1850. lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1851. lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-2 - 2 * cos(sine / 100)), rd(3 - 3 * cos(sine / 100)), rd(2 - 2 * cos(sine / 100))), 0.3)
  1852. lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  1853. end
  1854. end)
  1855. function dispose()
  1856. for i, v in pairs(getfenv(0)) do
  1857. v = nil
  1858. end
  1859. error = nil
  1860. print = nil
  1861. warn = nil
  1862. end
  1863. human.Died:connect(dispose)
  1864. chr.Changed:connect(function()
  1865. if chr.Parent == nil then
  1866. dispose()
  1867. end
  1868. end)
Add Comment
Please, Sign In to add comment