SHOW:
|
|
- or go back to the newest paste.
| 1 | - | 400 Looks. Thank you for all of the support, it really means a lot to me. |
| 1 | + | local Player = game:GetService("Players").RhiBel00351
|
| 2 | - | I think it's time I close off today with another scipt! |
| 2 | + | |
| 3 | - | A lot of people have been talking about Reality Glitcher, so here you go! Don't forget to put your Roblox username at the Your Name Here at the top of the script! |
| 3 | + | |
| 4 | - | Enjoy :D |
| 4 | + | |
| 5 | - | local Player = game:GetService("Players").urname --<=== Replace With Your Name
|
| 5 | + | |
| 6 | script.Parent = Player.Character | |
| 7 | local CAS = {Actions={}}
| |
| 8 | local Event = Instance.new("RemoteEvent")
| |
| 9 | Event.Name = "UserInput_Event" | |
| 10 | Event.Parent = Player.Character | |
| 11 | local fakeEvent = function() | |
| 12 | local t = {_fakeEvent=true}
| |
| 13 | t.Connect = function(self,f)self.Function=f end | |
| 14 | t.connect = t.Connect | |
| 15 | return t | |
| 16 | end | |
| 17 | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
| |
| 18 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
| |
| 19 | function CAS:BindAction(name,fun,touch,...) | |
| 20 | CAS.Actions[name] = {Name=name,Function=fun,Keys={...}}
| |
| 21 | end | |
| 22 | function CAS:UnbindAction(name) | |
| 23 | CAS.Actions[name] = nil | |
| 24 | end | |
| 25 | local function te(self,ev,...) | |
| 26 | local t = m[ev] | |
| 27 | if t and t._fakeEvent and t.Function then | |
| 28 | t.Function(...) | |
| 29 | end | |
| 30 | end | |
| 31 | m.TrigEvent = te | |
| 32 | UIS.TrigEvent = te | |
| 33 | Event.OnServerEvent:Connect(function(plr,io) | |
| 34 | if plr~=Player then return end | |
| 35 | if io.isMouse then | |
| 36 | m.Target = io.Target | |
| 37 | m.Hit = io.Hit | |
| 38 | elseif io.UserInputType == Enum.UserInputType.MouseButton1 then | |
| 39 | if io.UserInputState == Enum.UserInputState.Begin then | |
| 40 | m:TrigEvent("Button1Down")
| |
| 41 | else | |
| 42 | m:TrigEvent("Button1Up")
| |
| 43 | end | |
| 44 | else | |
| 45 | for n,t in pairs(CAS.Actions) do | |
| 46 | for _,k in pairs(t.Keys) do | |
| 47 | if k==io.KeyCode then | |
| 48 | t.Function(t.Name,io.UserInputState,io) | |
| 49 | end | |
| 50 | end | |
| 51 | end | |
| 52 | if io.UserInputState == Enum.UserInputState.Begin then | |
| 53 | m:TrigEvent("KeyDown",io.KeyCode.Name:lower())
| |
| 54 | UIS:TrigEvent("InputBegan",io,false)
| |
| 55 | else | |
| 56 | m:TrigEvent("KeyUp",io.KeyCode.Name:lower())
| |
| 57 | UIS:TrigEvent("InputEnded",io,false)
| |
| 58 | end | |
| 59 | end | |
| 60 | end) | |
| 61 | Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS | |
| 62 | end | |
| 63 | ||
| 64 | --------------------visualizer | |
| 65 | local GUID = {}
| |
| 66 | do | |
| 67 | GUID.IDs = {};
| |
| 68 | function GUID:new(len) | |
| 69 | local id; | |
| 70 | if(not len)then | |
| 71 | id = (tostring(function() end)) | |
| 72 | id = id:gsub("function: ","")
| |
| 73 | else | |
| 74 | local function genID(len) | |
| 75 | local newID = "" | |
| 76 | for i = 1,len do | |
| 77 | newID = newID..string.char(math.random(48,90)) | |
| 78 | end | |
| 79 | return newID | |
| 80 | end | |
| 81 | repeat id = genID(len) until not GUID.IDs[id] | |
| 82 | local oid = id; | |
| 83 | id = {Trash=function() GUID.IDs[oid]=nil; end;Get=function() return oid; end}
| |
| 84 | GUID.IDs[oid]=true; | |
| 85 | end | |
| 86 | return id | |
| 87 | end | |
| 88 | end | |
| 89 | ||
| 90 | local fakeEvent = function() | |
| 91 | local t = {_fakeEvent=true,Waited={}}
| |
| 92 | t.Connect = function(self,f) | |
| 93 | local ft={Disconnected=false;disconnect=function(s) s.Disconnected=true end}
| |
| 94 | ft.Disconnect=ft.disconnect | |
| 95 | ||
| 96 | ft.Func=function(...) | |
| 97 | for id,_ in next, t.Waited do | |
| 98 | t.Waited[id] = true | |
| 99 | end | |
| 100 | return f(...) | |
| 101 | end; | |
| 102 | self.Function=ft; | |
| 103 | return ft; | |
| 104 | end | |
| 105 | t.connect = t.Connect | |
| 106 | t.Wait = function() | |
| 107 | local guid = GUID:new(25) | |
| 108 | local waitingId = guid:Get() | |
| 109 | t.Waited[waitingId]=false | |
| 110 | repeat swait() until t.Waited[waitingId]==true | |
| 111 | t.Waited[waitingId]=nil; | |
| 112 | guid:Trash() | |
| 113 | end | |
| 114 | t.wait = t.Wait | |
| 115 | return t | |
| 116 | end | |
| 117 | ||
| 118 | local CoAS = {Actions={}}
| |
| 119 | local oPlayer = Player | |
| 120 | local Player = oPlayer | |
| 121 | ||
| 122 | local loudnesses={}
| |
| 123 | script.Parent = Player.Character | |
| 124 | local CoAS = {Actions={}}
| |
| 125 | local Event = Instance.new("RemoteEvent")
| |
| 126 | Event.Name = "UserInputEvent" | |
| 127 | Event.Parent = Player.Character | |
| 128 | local Func = Instance.new("RemoteFunction")
| |
| 129 | Func.Name = "GetClientProperty" | |
| 130 | Func.Parent = Player.Character | |
| 131 | local fakeEvent = function() | |
| 132 | local t = {_fakeEvent=true,Waited={},Connected={}}
| |
| 133 | t.Connect = function(self,f) | |
| 134 | local ft={}
| |
| 135 | ft={Disconnected=false;disconnect=function(s) if(self.Function==ft)then self.Function=nil end s.Disconnected=true end}
| |
| 136 | ft.Disconnect=ft.disconnect | |
| 137 | ||
| 138 | ft.Func=function(...) | |
| 139 | for id,_ in next, t.Waited do | |
| 140 | t.Waited[id] = true | |
| 141 | end | |
| 142 | return f(...) | |
| 143 | end; | |
| 144 | ||
| 145 | table.insert(self.Connected,ft) | |
| 146 | return ft; | |
| 147 | end | |
| 148 | t.connect = t.Connect | |
| 149 | t.Wait = function() | |
| 150 | local guid = GUID:new(25) | |
| 151 | local waitingId = guid:Get() | |
| 152 | t.Waited[waitingId]=false | |
| 153 | repeat swait() until t.Waited[waitingId]==true | |
| 154 | t.Waited[waitingId]=nil; | |
| 155 | guid:Trash() | |
| 156 | end | |
| 157 | t.wait = t.Wait | |
| 158 | return t | |
| 159 | end | |
| 160 | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
| |
| 161 | local UsIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
| |
| 162 | local Run = {RenderStepped=fakeEvent()}
| |
| 163 | ||
| 164 | function CoAS:BindAction(name,fun,touch,...) | |
| 165 | CoAS.Actions[name] = {Name=name,Function=fun,Keys={...}}
| |
| 166 | end | |
| 167 | function CoAS:UnbindAction(name) | |
| 168 | CoAS.Actions[name] = nil | |
| 169 | end | |
| 170 | local function te(self,ev,...) | |
| 171 | local t = self[ev] | |
| 172 | if t and t._fakeEvent and t.Connected then | |
| 173 | for i,v in next, t.Connected do | |
| 174 | if(v.Func and not v.Disconnected)then | |
| 175 | v.Func(...) | |
| 176 | else | |
| 177 | t.Connected[i]=nil | |
| 178 | end | |
| 179 | end | |
| 180 | end | |
| 181 | end | |
| 182 | m.TrigEvent = te | |
| 183 | UsIS.TrigEvent = te | |
| 184 | Run.TrigEvent = te | |
| 185 | Event.OnServerEvent:Connect(function(plr,io) | |
| 186 | if plr~=Player then return end | |
| 187 | --[[table.foreach(io,print) | |
| 188 | print'---']] | |
| 189 | if io.Mouse then | |
| 190 | m.Target = io.Target | |
| 191 | m.Hit = io.Hit | |
| 192 | elseif io.KeyEvent then | |
| 193 | m:TrigEvent('Key'..io.KeyEvent,io.Key)
| |
| 194 | elseif io.UserInputType == Enum.UserInputType.MouseButton1 then | |
| 195 | if io.UserInputState == Enum.UserInputState.Begin then | |
| 196 | m:TrigEvent("Button1Down")
| |
| 197 | else | |
| 198 | m:TrigEvent("Button1Up")
| |
| 199 | end | |
| 200 | end | |
| 201 | if(not io.KeyEvent and not io.Mouse)then | |
| 202 | ||
| 203 | for n,t in pairs(CoAS.Actions) do | |
| 204 | for _,k in pairs(t.Keys) do | |
| 205 | if k==io.KeyCode then | |
| 206 | t.Function(t.Name,io.UserInputState,io) | |
| 207 | end | |
| 208 | end | |
| 209 | end | |
| 210 | if io.UserInputState == Enum.UserInputState.Begin then | |
| 211 | UsIS:TrigEvent("InputBegan",io,false)
| |
| 212 | else | |
| 213 | UsIS:TrigEvent("InputEnded",io,false)
| |
| 214 | end | |
| 215 | end | |
| 216 | end) | |
| 217 | ||
| 218 | Func.OnServerInvoke = function(plr,inst,play) | |
| 219 | if plr~=Player then return end | |
| 220 | if(inst and typeof(inst) == 'Instance' and inst:IsA'Sound')then | |
| 221 | loudnesses[inst]=play | |
| 222 | end | |
| 223 | end | |
| 224 | ||
| 225 | function GetClientProperty(inst,prop) | |
| 226 | if(prop == 'PlaybackLoudness' and loudnesses[inst])then | |
| 227 | return loudnesses[inst] | |
| 228 | elseif(prop == 'PlaybackLoudness')then | |
| 229 | return Func:InvokeClient(Player,'RegSound',inst) | |
| 230 | end | |
| 231 | return Func:InvokeClient(Player,inst,prop) | |
| 232 | end | |
| 233 | local oldGame = game; | |
| 234 | function GetFakePlayer() | |
| 235 | local oldPlayer = Player; | |
| 236 | local fakePlayer = newproxy(true) | |
| 237 | getmetatable(fakePlayer).__index = function(s,i) | |
| 238 | if(i == 'GetMouse')then | |
| 239 | return function() return m; end | |
| 240 | end | |
| 241 | return Player[i] | |
| 242 | end | |
| 243 | getmetatable(fakePlayer).__newindex = function(s,i,v) | |
| 244 | Player[i]=v | |
| 245 | end | |
| 246 | getmetatable(fakePlayer).__call=function(self,...) | |
| 247 | if(self == fakePlayer)then self = Player end | |
| 248 | local wh = {...}
| |
| 249 | local name = table.remove(wh,1) | |
| 250 | for i,v in next, wh do | |
| 251 | wh[i]=v | |
| 252 | end | |
| 253 | if(name == 'GetMouse')then | |
| 254 | return m; | |
| 255 | end | |
| 256 | return self(name,unpack(wh)) | |
| 257 | end | |
| 258 | getmetatable(fakePlayer).__namecall=function(self,...) | |
| 259 | if(self == fakePlayer)then self = Player end | |
| 260 | local tuple={...}
| |
| 261 | local name = table.remove(tuple,#tuple) | |
| 262 | ||
| 263 | if(name == 'GetMouse')then | |
| 264 | return m; | |
| 265 | else | |
| 266 | return self[name](self,unpack(tuple)) | |
| 267 | end | |
| 268 | end | |
| 269 | ||
| 270 | return fakePlayer | |
| 271 | end | |
| 272 | local oll = LoadLibrary; | |
| 273 | function LoadLibrary(libtard) | |
| 274 | local libtarddestroyed=oll(libtard) | |
| 275 | if(libtard=='RbxUtility')then | |
| 276 | local library={Create=function(obj)
| |
| 277 | local inst = Instance.new(obj) | |
| 278 | return function(props) | |
| 279 | for prop,valu in next, props do | |
| 280 | inst[prop]=valu | |
| 281 | end | |
| 282 | return inst | |
| 283 | end | |
| 284 | end} | |
| 285 | setmetatable(library,{__index=libtarddestroyed,__newindex=function(s,i,v) libtarddestroyed[i]=v end})
| |
| 286 | ||
| 287 | return library | |
| 288 | else | |
| 289 | return libtarddestroyed | |
| 290 | end | |
| 291 | end | |
| 292 | fakePlayer = GetFakePlayer() | |
| 293 | local function GetService(s,i) | |
| 294 | local service = s:GetService(i) | |
| 295 | if(i == 'Players')then | |
| 296 | local oldService = service; | |
| 297 | local fakeService = newproxy(true) | |
| 298 | getmetatable(fakeService).__index = function(s,i) | |
| 299 | if(s == fakeService)then s=oldService end | |
| 300 | if(i == 'LocalPlayer' or i == 'localPlayer')then | |
| 301 | return fakePlayer | |
| 302 | elseif(i == 'oPlayer')then | |
| 303 | return oPlayer | |
| 304 | else | |
| 305 | return s[i] | |
| 306 | end | |
| 307 | end | |
| 308 | getmetatable(fakeService).__newindex = function(s,i,v) | |
| 309 | if(s == fakeService)then s=oldService end | |
| 310 | s[i]=v | |
| 311 | end | |
| 312 | getmetatable(fakeService).__call=function(self,...) | |
| 313 | if(self == fakeService)then self = oldService end | |
| 314 | local wh = {...}
| |
| 315 | local name = table.remove(wh,1) | |
| 316 | for i,v in next, wh do | |
| 317 | wh[i]=v | |
| 318 | end | |
| 319 | return self(name,unpack(wh)) | |
| 320 | end | |
| 321 | getmetatable(fakeService).__namecall=function(self,...) | |
| 322 | if(self == fakeService)then self = oldService end | |
| 323 | local tuple={...}
| |
| 324 | local name = table.remove(tuple,#tuple) | |
| 325 | ||
| 326 | return self[name](self,unpack(tuple)) | |
| 327 | end | |
| 328 | getmetatable(fakeService).__metatable = 'gay' | |
| 329 | return fakeService | |
| 330 | elseif(i == 'RunService')then | |
| 331 | local oldService = service; | |
| 332 | local fakeService = newproxy(true) | |
| 333 | getmetatable(fakeService).__index = function(s,i) | |
| 334 | if(s == fakeService)then s=oldService end | |
| 335 | return Run[i] or s[i] | |
| 336 | end | |
| 337 | getmetatable(fakeService).__newindex = function(s,i,v) | |
| 338 | if(s == fakeService)then s=oldService end | |
| 339 | s[i]=v | |
| 340 | end | |
| 341 | getmetatable(fakeService).__call=function(self,...) | |
| 342 | if(self == fakeService)then self = oldService end | |
| 343 | local wh = {...}
| |
| 344 | local name = table.remove(wh,1) | |
| 345 | for i,v in next, wh do | |
| 346 | wh[i]=v | |
| 347 | end | |
| 348 | return self(name,unpack(wh)) | |
| 349 | end | |
| 350 | getmetatable(fakeService).__namecall=function(self,...) | |
| 351 | if(self == fakeService)then self = oldService end | |
| 352 | local tuple={...}
| |
| 353 | local name = table.remove(tuple,#tuple) | |
| 354 | ||
| 355 | return self[name](self,unpack(tuple)) | |
| 356 | end | |
| 357 | getmetatable(fakeService).__metatable = 'gay' | |
| 358 | return fakeService | |
| 359 | elseif(i == 'UserInputService')then | |
| 360 | return UsIS | |
| 361 | elseif(i == 'ContextActionService')then | |
| 362 | return CoAS; | |
| 363 | else | |
| 364 | return service | |
| 365 | end | |
| 366 | end | |
| 367 | ||
| 368 | ||
| 369 | ||
| 370 | ---------Replace All "LocalPlayer" With Your Name. | |
| 371 | --Remove "Mouse =" or "local mouse =" at the start. | |
| 372 | --Replace Kermat161 At The Top Of The Script With You Name. | |
| 373 | -----------------------------Script In The Line's. | |
| 374 | ||
| 375 | --[[ | |
| 376 | if(game:service'Players'.localPlayer.UserId ~= 5719877 and game:service'Players'.localPlayer.UserId ~= 146353005 and game:service'Players'.localPlayer.UserId ~= 52302680)then | |
| 377 | game:service'Players'.localPlayer:Kick("gone")
| |
| 378 | end]] | |
| 379 | ||
| 380 | ||
| 381 | --[[Salvo_Starly[Salvy].Weaponry_2018.7]]-- | |
| 382 | --[[Project Name: Reality Glitcher]]-- | |
| 383 | wait(.2) | |
| 384 | warn([[ | |
| 385 | So I've called for help, | |
| 386 | to join the war between Ruin and Glitcher. | |
| 387 | ||
| 388 | Finally, something interesting gonna be happened. | |
| 389 | I, Reality Glitcher, gonna help our lord, StarGlitcher to fight with. | |
| 390 | ||
| 391 | Well, | |
| 392 | I guess I'll won't go easy on you. | |
| 393 | Fight me if you're brave enough, mortals. | |
| 394 | ||
| 395 | Soon, I'll make the reality become emptiness. | |
| 396 | -Aprins]]) | |
| 397 | print'particle update?' | |
| 398 | --[[ | |
| 399 | Skills Available: | |
| 400 | * - Available, # - WiP | |
| 401 | ---------------|Z|X|C|V|Status |Buff | |
| 402 | Rust:----------|*| | | |Disease| | |
| 403 | Nova:----------| | | |*|-------| | |
| 404 | Celestial:-----|*| | | |-------|Purity | |
| 405 | Glacier:-------| |*| | |Freeze | | |
| 406 | Desperation:---|*| | | |-------| | |
| 407 | Saint:---------| | |*| |-------| | |
| 408 | Dreary:--------|*|*| | |-------| | |
| 409 | Jade:----------|*| | | |-------| | |
| 410 | Psychosis:-----|*|*| | |-------|Critical | |
| 411 | Conflagration:-|*| | | |Burn | | |
| 412 | Lullaby:-------|*| | | |Sleep | | |
| 413 | Somnambulist:--|*| | | |-------| | |
| 414 | Amativeness:---| |*| | |??? |Pacifist | |
| 415 | Nil------------| | | | |-------| | |
| 416 | Wither:--------|*| | | |-------| | |
| 417 | T-Catastrophe:-| | | | |-------| | |
| 418 | Cyclone:-------| | | |*|-------| | |
| 419 | Minstral:------| | | | |-------|Dmg+Music Power | |
| 420 | Sombra:--------|*| | | |Blind | | |
| 421 | Fictitious:----|*|*| | |-------| | |
| 422 | Benevolence:---|*| | | |Bless |Heal | |
| 423 | ]]-- | |
| 424 | plr=game.Players.RhiBel00351 | |
| 425 | chr=plr.Character | |
| 426 | Head=chr.Head | |
| 427 | Root=chr.HumanoidRootPart | |
| 428 | - | plr=game.Players.urname |
| 428 | + | |
| 429 | RArm=chr["Right Arm"] | |
| 430 | LArm=chr["Left Arm"] | |
| 431 | RLeg=chr["Right Leg"] | |
| 432 | LLeg=chr["Left Leg"] | |
| 433 | RJ=Root.RootJoint | |
| 434 | Neck=Torso.Neck | |
| 435 | LS=Torso["Left Shoulder"] | |
| 436 | LH=Torso["Left Hip"] | |
| 437 | RS=Torso["Right Shoulder"] | |
| 438 | RH=Torso["Right Hip"] | |
| 439 | hum=chr:FindFirstChildOfClass("Humanoid")
| |
| 440 | Pose="Idle" | |
| 441 | attack=false | |
| 442 | combo=1 | |
| 443 | sin=0 | |
| 444 | cha=1 | |
| 445 | musicset="Global" | |
| 446 | musicsetting=false | |
| 447 | modecolor={"Rust","Dusty Rose"}
| |
| 448 | modeMaterial={"CorrodedMetal","Neon"}
| |
| 449 | mode="Rust" | |
| 450 | lastsong="1588725965" | |
| 451 | namegui=true | |
| 452 | nameguisetting=false | |
| 453 | idling=0 | |
| 454 | page=1 | |
| 455 | died=false | |
| 456 | truedied=false | |
| 457 | transp=0 | |
| 458 | cooldisable=false | |
| 459 | hold=false | |
| 460 | local hlastjp=40 | |
| 461 | local hlastws=16 | |
| 462 | local doe=0 | |
| 463 | local nilcolor={"Really red","New Yeller","Lime green","Really blue","Deep orange","Cyan","Royal purple","Hot pink","Really black","Institutional white"}
| |
| 464 | local nilmaterial={"Brick","Cobblestone","Concrete","CorrodedMetal","DiamondPlate","Fabric","Foil","Glass","Granite","Grass","Ice","Marble","Metal","Neon","Pebble","Plastic","Sand","Slate","SmoothPlastic","Wood","WoodPlanks"}
| |
| 465 | local nilmeshtype={"Brick","Sphere","Cylinder","Wedge","Head","Torso"}
| |
| 466 | create=LoadLibrary("RbxUtility").Create
| |
| 467 | ||
| 468 | hum.MaxHealth=40000 | |
| 469 | ||
| 470 | hum.Health=hum.MaxHealth | |
| 471 | ||
| 472 | --debug? | |
| 473 | for _,c in pairs(workspace:children()) do | |
| 474 | if c:IsA("Model") then
| |
| 475 | if c:findFirstChildOfClass("StringValue") then
| |
| 476 | local aaaa=c:findFirstChildOfClass("StringValue")
| |
| 477 | local stringv=string.match(aaaa.Name,"RGSE") | |
| 478 | if stringv then | |
| 479 | aaaa:Remove() | |
| 480 | end | |
| 481 | end | |
| 482 | end | |
| 483 | end | |
| 484 | ||
| 485 | --auto clean lighting | |
| 486 | game:GetService("Lighting"):ClearAllChildren()
| |
| 487 | ||
| 488 | --accessoryweld for death | |
| 489 | for _,c in pairs(chr:children()) do | |
| 490 | if c:IsA("Accessory") then
| |
| 491 | local han=c:findFirstChild("Handle")
| |
| 492 | if han then | |
| 493 | local wel=han:findFirstChildOfClass("Weld")
| |
| 494 | if wel then | |
| 495 | local hmm=create("StringValue"){
| |
| 496 | Name="acc", | |
| 497 | Parent=han} | |
| 498 | if wel.Part1==Torso then | |
| 499 | print't' | |
| 500 | hmm.Value="Torso" | |
| 501 | elseif wel.Part1==Head then | |
| 502 | print'h' | |
| 503 | hmm.Value="Head" | |
| 504 | end | |
| 505 | end | |
| 506 | end | |
| 507 | end | |
| 508 | end | |
| 509 | ||
| 510 | function clerp(a,b,t) | |
| 511 | return a:lerp(b,t) | |
| 512 | end | |
| 513 | ||
| 514 | local newMotor=function(name,p0,p1,c0,c1) | |
| 515 | local w=Instance.new('Motor',p0)
| |
| 516 | w.Name=name | |
| 517 | w.Part0=p0 | |
| 518 | w.Part1=p1 | |
| 519 | w.C0=c0 | |
| 520 | w.C1=c1 | |
| 521 | return w | |
| 522 | end | |
| 523 | ||
| 524 | function NoOutline(Part) | |
| 525 | Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface=10,10,10,10,10,10 | |
| 526 | end | |
| 527 | ||
| 528 | function rayCast(Position,Direction,Range,Ignore) | |
| 529 | return game:service("Workspace"):FindPartOnRay(Ray.new(Position,Direction.unit*(Range or 999.999)),Ignore)
| |
| 530 | end | |
| 531 | ||
| 532 | ArtificialHB=create("BindableEvent"){
| |
| 533 | Parent=script, | |
| 534 | Name="Heartbeat"} | |
| 535 | ||
| 536 | script:WaitForChild("Heartbeat")
| |
| 537 | ||
| 538 | frame=0.0166666666666666667 | |
| 539 | tf=0 | |
| 540 | allowframeloss=false | |
| 541 | tossremainder=false | |
| 542 | lastframe=tick() | |
| 543 | script.Heartbeat:Fire() | |
| 544 | ||
| 545 | game:GetService("RunService").Heartbeat:connect(function(s,p)
| |
| 546 | tf=tf+s | |
| 547 | if tf >=frame then | |
| 548 | if allowframeloss then | |
| 549 | script.Heartbeat:Fire() | |
| 550 | lastframe=tick() | |
| 551 | else | |
| 552 | for i=1,math.floor(tf/frame) do | |
| 553 | script.Heartbeat:Fire() | |
| 554 | end | |
| 555 | lastframe=tick() | |
| 556 | end | |
| 557 | if tossremainder then | |
| 558 | tf=0 | |
| 559 | else | |
| 560 | tf=tf-frame*math.floor(tf/frame) | |
| 561 | end | |
| 562 | end | |
| 563 | end) | |
| 564 | ||
| 565 | function swait(num) | |
| 566 | if num==0 or num==nil then | |
| 567 | ArtificialHB.Event:wait() | |
| 568 | else | |
| 569 | for i=0,num do | |
| 570 | ArtificialHB.Event:wait() | |
| 571 | end | |
| 572 | end | |
| 573 | end | |
| 574 | ||
| 575 | function parts(Par,name,size,color,mat,ref,tra) | |
| 576 | local part=create("Part"){
| |
| 577 | Parent=Par, | |
| 578 | Name=name, | |
| 579 | Size=size, | |
| 580 | CanCollide=false, | |
| 581 | Anchored=false, | |
| 582 | BrickColor=BrickColor.new(color), | |
| 583 | Material=mat, | |
| 584 | Reflectance=ref, | |
| 585 | Transparency=tra} | |
| 586 | --Position=Torso.Position} | |
| 587 | NoOutline(part) | |
| 588 | part:BreakJoints() | |
| 589 | return part | |
| 590 | end | |
| 591 | ||
| 592 | function cwedges(Par,name,size,color,mat,ref,tra) | |
| 593 | local wedgez=create("CornerWedgePart"){
| |
| 594 | Parent=Par, | |
| 595 | Name=name, | |
| 596 | Size=size, | |
| 597 | CanCollide=false, | |
| 598 | Anchored=false, | |
| 599 | BrickColor=BrickColor.new(color), | |
| 600 | Material=mat, | |
| 601 | Reflectance=ref, | |
| 602 | Transparency=tra} | |
| 603 | --Position=Torso.Position} | |
| 604 | NoOutline(wedgez) | |
| 605 | wedgez:BreakJoints() | |
| 606 | return wedgez | |
| 607 | end | |
| 608 | ||
| 609 | ||
| 610 | function meshs(Par,name,scale,mtype,id) | |
| 611 | local mesh=create("SpecialMesh"){
| |
| 612 | Parent=Par, | |
| 613 | Name=name, | |
| 614 | Scale=scale, | |
| 615 | MeshType=mtype} | |
| 616 | if id~="" then | |
| 617 | mesh.MeshId="rbxassetid://"..id | |
| 618 | end | |
| 619 | return mesh | |
| 620 | end | |
| 621 | ||
| 622 | function welds(Par,name,p0,p1,c0,c1) | |
| 623 | local weld=create("Weld"){
| |
| 624 | Parent=Par, | |
| 625 | Name=name, | |
| 626 | Part0=p0, | |
| 627 | Part1=p1, | |
| 628 | C0=c0, | |
| 629 | C1=c1} | |
| 630 | return weld | |
| 631 | end | |
| 632 | ||
| 633 | function sounds(Par,id,vol,pit) | |
| 634 | local sound=create("Sound"){
| |
| 635 | Parent=Par, | |
| 636 | SoundId="rbxassetid://"..id, | |
| 637 | Volume=vol, | |
| 638 | PlaybackSpeed=pit, | |
| 639 | MaxDistance=66666666} | |
| 640 | sound:Play() | |
| 641 | game:GetService("Debris"):AddItem(sound,10)
| |
| 642 | return sound | |
| 643 | end | |
| 644 | ||
| 645 | function pssounds(Par,id,vol,pit,octave,pri) --no too lazy | |
| 646 | local psound=create("Sound"){
| |
| 647 | Parent=Par, | |
| 648 | SoundId="rbxassetid://"..id, | |
| 649 | Volume=vol, | |
| 650 | PlaybackSpeed=pit, | |
| 651 | MaxDistance=66666666} | |
| 652 | psound:Play() | |
| 653 | local pitch=create("PitchShiftSoundEffect"){
| |
| 654 | Parent=psound, | |
| 655 | Octave=octave, | |
| 656 | Priority=2, | |
| 657 | Enabled=true | |
| 658 | } | |
| 659 | game:GetService("Debris"):AddItem(psound,10)
| |
| 660 | return psound | |
| 661 | end | |
| 662 | ||
| 663 | local NSn=NumberSequence.new | |
| 664 | local NSKp=NumberSequenceKeypoint.new | |
| 665 | local CSn=ColorSequence.new | |
| 666 | local NRn=NumberRange.new | |
| 667 | function particles(par,zoff,color,id,lemi,linf,direct,sizmin,sizmax,tramin,tramax,lifemin,lifemax,rotmin,rotmax,speed,velocity,lock,timelimit) | |
| 668 | local aaa=NSn({NSKp(0, sizmin),NSKp(1, sizmax)})
| |
| 669 | local bbb=NSn({NSKp(0, tramin),NSKp(1, tramax)})
| |
| 670 | local parti=create("ParticleEmitter"){
| |
| 671 | Color=CSn(BrickColor.new(color).Color), | |
| 672 | LightEmission=lemi, | |
| 673 | LightInfluence=0, --hec this | |
| 674 | Texture="rbxassetid://"..id, | |
| 675 | Transparency=bbb, | |
| 676 | Size=aaa, | |
| 677 | ZOffset=zoff, | |
| 678 | --Acceleration=Vector3.new(0, 2, 0), | |
| 679 | LockedToPart=lock, | |
| 680 | EmissionDirection=direct, | |
| 681 | Lifetime=NRn(lifemin,lifemax), | |
| 682 | Rate=2000, | |
| 683 | Rotation=NRn(-360, 360), | |
| 684 | RotSpeed=NRn(-rotmin, rotmax), | |
| 685 | Speed=NRn(speed), | |
| 686 | VelocitySpread=velocity, | |
| 687 | Enabled=true, | |
| 688 | Parent=par | |
| 689 | } | |
| 690 | if timelimit~=nil then | |
| 691 | coroutine.resume(coroutine.create(function(p) | |
| 692 | swait(timelimit) | |
| 693 | parti.Enabled=false | |
| 694 | end),parti) | |
| 695 | game:GetService("Debris"):AddItem(parti,10)
| |
| 696 | end | |
| 697 | return parti | |
| 698 | end | |
| 699 | ||
| 700 | MainGui=create("ScreenGui"){
| |
| 701 | Name="GlitcherGui", | |
| 702 | Parent=plr.PlayerGui, | |
| 703 | DisplayOrder=5 | |
| 704 | } | |
| 705 | ||
| 706 | local true1=true | |
| 707 | local true2=true | |
| 708 | ||
| 709 | ||
| 710 | didcc=false | |
| 711 | if true1 or true2 then | |
| 712 | CCselection=create("Frame"){
| |
| 713 | Name="CCFrame", | |
| 714 | Parent=MainGui, | |
| 715 | BorderSizePixel=0, | |
| 716 | BackgroundTransparency=.5, | |
| 717 | BackgroundColor3=BrickColor.new(modecolor[1]).Color, | |
| 718 | AnchorPoint=Vector2.new(.5,.5), | |
| 719 | Position=UDim2.new(.5,0,1.3,0), | |
| 720 | Size=UDim2.new(.3,0,.2,0), | |
| 721 | Rotation=0, | |
| 722 | ZIndex=2, | |
| 723 | ClipsDescendants=true | |
| 724 | } | |
| 725 | CCselection:TweenPosition(UDim2.new(.5,0,.5,0), "Out", "Quart", .9,true) | |
| 726 | ||
| 727 | asd1=create("Frame"){
| |
| 728 | Parent=CCselection, | |
| 729 | BackgroundTransparency=0, | |
| 730 | BackgroundColor3=BrickColor.new(modecolor[2]).Color, | |
| 731 | BorderSizePixel=0, | |
| 732 | AnchorPoint=Vector2.new(1,.5), | |
| 733 | Position=UDim2.new(1,0,.99,0), | |
| 734 | Size=UDim2.new(1,0,.02,0), | |
| 735 | ZIndex=2 | |
| 736 | } | |
| 737 | ||
| 738 | asd2=create("Frame"){
| |
| 739 | Parent=CCselection, | |
| 740 | BackgroundTransparency=0, | |
| 741 | BackgroundColor3=BrickColor.new(modecolor[2]).Color, | |
| 742 | BorderSizePixel=0, | |
| 743 | AnchorPoint=Vector2.new(0,1), | |
| 744 | Position=UDim2.new(0,0,1,0), | |
| 745 | Size=UDim2.new(.01,0,1,0), | |
| 746 | ZIndex=2 | |
| 747 | } | |
| 748 | ||
| 749 | asd3=create("Frame"){
| |
| 750 | Parent=CCselection, | |
| 751 | BackgroundTransparency=0, | |
| 752 | BackgroundColor3=BrickColor.new(modecolor[2]).Color, | |
| 753 | BorderSizePixel=0, | |
| 754 | AnchorPoint=Vector2.new(0,1), | |
| 755 | Position=UDim2.new(.99,0,1,0), | |
| 756 | Size=UDim2.new(.01,0,1,0), | |
| 757 | ZIndex=2 | |
| 758 | } | |
| 759 | ||
| 760 | haa=create("TextLabel"){
| |
| 761 | Parent=CCselection, | |
| 762 | BackgroundTransparency=1, | |
| 763 | BorderSizePixel=0, | |
| 764 | AnchorPoint=Vector2.new(.5,.5), | |
| 765 | Position=UDim2.new(.5,0,-.2,0), | |
| 766 | Size=UDim2.new(.95,0,.5,0), | |
| 767 | ZIndex=2, | |
| 768 | Text="Disable ColorCorrection Effect?", | |
| 769 | TextColor3=BrickColor.new(modecolor[1]).Color, | |
| 770 | Font="Bodoni", | |
| 771 | TextScaled=true, | |
| 772 | TextStrokeTransparency=0 | |
| 773 | } | |
| 774 | ||
| 775 | Yes=create("TextButton"){
| |
| 776 | Parent=CCselection, | |
| 777 | BorderSizePixel=0, | |
| 778 | BackgroundTransparency=.4, | |
| 779 | BackgroundColor3=BrickColor.new(modecolor[2]).Color, | |
| 780 | AnchorPoint=Vector2.new(.5,.5), | |
| 781 | Position=UDim2.new(-.3,0,.7,0), | |
| 782 | Size=UDim2.new(.35,0,.4,0), | |
| 783 | ZIndex=9, | |
| 784 | Font="Bodoni", | |
| 785 | Text="Yes", | |
| 786 | TextScaled=true, | |
| 787 | TextStrokeTransparency=0, | |
| 788 | TextColor3=BrickColor.new(modecolor[1]).Color, | |
| 789 | } | |
| 790 | ||
| 791 | No=create("TextButton"){
| |
| 792 | Parent=CCselection, | |
| 793 | BorderSizePixel=0, | |
| 794 | BackgroundTransparency=.4, | |
| 795 | BackgroundColor3=BrickColor.new(modecolor[2]).Color, | |
| 796 | AnchorPoint=Vector2.new(.5,.5), | |
| 797 | Position=UDim2.new(1.3,0,.7,0), | |
| 798 | Size=UDim2.new(.35,0,.4,0), | |
| 799 | ZIndex=9, | |
| 800 | Font="Bodoni", | |
| 801 | Text="No", | |
| 802 | TextScaled=true, | |
| 803 | TextStrokeTransparency=0, | |
| 804 | TextColor3=BrickColor.new(modecolor[1]).Color, | |
| 805 | } | |
| 806 | ||
| 807 | haa:TweenPosition(UDim2.new(.5,0,.23,0), "Out", "Quart", 2,true) | |
| 808 | Yes:TweenPosition(UDim2.new(.3,0,.7,0), "Out", "Quart", 2,true) | |
| 809 | No:TweenPosition(UDim2.new(.7,0,.7,0), "Out", "Quart", 2,true) | |
| 810 | ||
| 811 | local abcdefghijklmnopqrstuvwxyz1234567890=false | |
| 812 | ||
| 813 | Yes.MouseButton1Click:connect(function() | |
| 814 | if abcdefghijklmnopqrstuvwxyz1234567890==false then | |
| 815 | abcdefghijklmnopqrstuvwxyz1234567890=true | |
| 816 | didcc=false | |
| 817 | end | |
| 818 | end) | |
| 819 | ||
| 820 | No.MouseButton1Click:connect(function() | |
| 821 | if abcdefghijklmnopqrstuvwxyz1234567890==false then | |
| 822 | abcdefghijklmnopqrstuvwxyz1234567890=true | |
| 823 | didcc=true | |
| 824 | end | |
| 825 | end) | |
| 826 | ||
| 827 | repeat | |
| 828 | swait() | |
| 829 | until abcdefghijklmnopqrstuvwxyz1234567890 | |
| 830 | coroutine.resume(coroutine.create(function(h) | |
| 831 | h:TweenPosition(UDim2.new(.5,0,-0.3,0), "Out", "Quart", .9,true) | |
| 832 | swait(70) | |
| 833 | h:Remove() | |
| 834 | end),CCselection) | |
| 835 | end | |
| 836 | chr.Animate:Remove() | |
| 837 | hum.Animator:Remove() | |
| 838 | ||
| 839 | for _,c in pairs(Torso:children()) do | |
| 840 | if c:IsA("Motor") and c.Name~="Neck" then
| |
| 841 | c:Remove() | |
| 842 | end | |
| 843 | end | |
| 844 | ||
| 845 | RJ.C0,RJ.C1=CFrame.new(0,0,0),CFrame.new(0,0,0) | |
| 846 | Neck.C0,Neck.C1=CFrame.new(0,1.5,0),CFrame.new(0,0,0) | |
| 847 | --[[RS.C0,RS.C1=CFrame.new(1.5,0,0),CFrame.new(0,0,0) | |
| 848 | LS.C0,LS.C1=CFrame.new(-1.5,0,0),CFrame.new(0,0,0) | |
| 849 | RH.C0,RH.C1=CFrame.new(.5,-2,0),CFrame.new(0,0,0) | |
| 850 | LH.C0,LH.C1=CFrame.new(-.5,-2,0),CFrame.new(0,0,0)]] | |
| 851 | local RS=newMotor("Right Shoulder",Torso, RArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
| |
| 852 | local LS=newMotor("Left Shoulder",Torso, LArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
| |
| 853 | local RH=newMotor("Right Hip",Torso, RLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
| |
| 854 | local LH=newMotor("Left Hip",Torso, LLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
| |
| 855 | ||
| 856 | ||
| 857 | m=create("Model"){
| |
| 858 | Parent=chr, | |
| 859 | Name="WModel"} | |
| 860 | e=create("Model"){
| |
| 861 | Parent=chr, | |
| 862 | Name="Effect"} | |
| 863 | ||
| 864 | theme=create("Sound"){
| |
| 865 | Parent=chr, | |
| 866 | SoundId="rbxassetid://1588725965", | |
| 867 | Volume=2, | |
| 868 | PlaybackSpeed=1, | |
| 869 | MaxDistance=66666666, | |
| 870 | EmitterSize=40, | |
| 871 | Name="Theme", | |
| 872 | Looped=true} | |
| 873 | theme:Play() | |
| 874 | ||
| 875 | local timeposit=create("NumberValue"){
| |
| 876 | Name="STP", | |
| 877 | Value=true, | |
| 878 | Parent=script} | |
| 879 | ||
| 880 | ||
| 881 | ||
| 882 | ||
| 883 | RealMain=parts(m,"RealMain",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,.7) | |
| 884 | RealMainWeld=welds(RealMain,"MainWeld",Torso,RealMain,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 885 | ||
| 886 | SubMain=parts(m,"SubMain",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,.7) | |
| 887 | SubMainWeld=welds(SubMain,"MainWeld",Root,SubMain,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 888 | ||
| 889 | Main=parts(m,"Main",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,.7) | |
| 890 | MainWeld=welds(Main,"MainWeld",RealMain,Main,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 891 | meshs(Main,"Mesh",Vector3.new(8.5,8.5,8.5),Enum.MeshType.Sphere,"") | |
| 892 | ||
| 893 | Main2=parts(m,"Main2",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,0) | |
| 894 | Main2Weld=welds(Main2,"Main2Weld",RealMain,Main2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 895 | meshs(Main2,"Mesh",Vector3.new(6.5,6.5,6.5),Enum.MeshType.Sphere,"") | |
| 896 | ||
| 897 | Main3=parts(m,"Main3",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,1) | |
| 898 | Main3Weld=welds(Main3,"Main2Weld",RealMain,Main3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 899 | ||
| 900 | Center1=parts(m,"Center1",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,1) | |
| 901 | Center1Weld=welds(Center1,"CenterWeld",Center1,Main,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,0)) | |
| 902 | Center2=parts(m,"Center2",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,1) | |
| 903 | Center2Weld=welds(Center2,"CenterWeld",Center2,Main,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(60))) | |
| 904 | Center3=parts(m,"Center3",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,1) | |
| 905 | Center3Weld=welds(Center3,"CenterWeld",Center3,Main,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(120))) | |
| 906 | Center4=parts(m,"Center4",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,1) | |
| 907 | Center4Weld=welds(Center4,"CenterWeld",Center4,Main,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(180))) | |
| 908 | Center5=parts(m,"Center5",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,1) | |
| 909 | Center5Weld=welds(Center5,"CenterWeld",Center5,Main,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(240))) | |
| 910 | Center6=parts(m,"Center6",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,1) | |
| 911 | Center6Weld=welds(Center6,"CenterWeld",Center6,Main,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(300))) | |
| 912 | ||
| 913 | local plight=create("PointLight"){
| |
| 914 | Parent=Torso, | |
| 915 | Brightness=1.4, | |
| 916 | Range=20, | |
| 917 | } | |
| 918 | local A1=create("Attachment"){
| |
| 919 | Parent=Center1, | |
| 920 | Position=Vector3.new(0,0,0) | |
| 921 | } | |
| 922 | local A2=create("Attachment"){
| |
| 923 | Parent=Center1, | |
| 924 | Position=Vector3.new(0,0,4.5) | |
| 925 | } | |
| 926 | local A3=create("Attachment"){
| |
| 927 | Parent=Center2, | |
| 928 | Position=Vector3.new(0,0,0) | |
| 929 | } | |
| 930 | local A4=create("Attachment"){
| |
| 931 | Parent=Center2, | |
| 932 | Position=Vector3.new(0,0,4.5) | |
| 933 | } | |
| 934 | local A5=create("Attachment"){
| |
| 935 | Parent=Center3, | |
| 936 | Position=Vector3.new(0,0,0) | |
| 937 | } | |
| 938 | local A6=create("Attachment"){
| |
| 939 | Parent=Center3, | |
| 940 | Position=Vector3.new(0,0,4.5) | |
| 941 | } | |
| 942 | local A7=create("Attachment"){
| |
| 943 | Parent=Center4, | |
| 944 | Position=Vector3.new(0,0,0) | |
| 945 | } | |
| 946 | local A8=create("Attachment"){
| |
| 947 | Parent=Center4, | |
| 948 | Position=Vector3.new(0,0,4.5) | |
| 949 | } | |
| 950 | local A9=create("Attachment"){
| |
| 951 | Parent=Center5, | |
| 952 | Position=Vector3.new(0,0,0) | |
| 953 | } | |
| 954 | local A10=create("Attachment"){
| |
| 955 | Parent=Center5, | |
| 956 | Position=Vector3.new(0,0,4.5) | |
| 957 | } | |
| 958 | local A11=create("Attachment"){
| |
| 959 | Parent=Center6, | |
| 960 | Position=Vector3.new(0,0,0) | |
| 961 | } | |
| 962 | local A12=create("Attachment"){
| |
| 963 | Parent=Center6, | |
| 964 | Position=Vector3.new(0,0,4.5) | |
| 965 | } | |
| 966 | local Trail11=create("Trail"){
| |
| 967 | Parent=m, | |
| 968 | LightEmission=1, | |
| 969 | LightInfluence=0, | |
| 970 | FaceCamera=false, | |
| 971 | Texture="rbxassetid://945758042", | |
| 972 | Attachment0=A1, | |
| 973 | Attachment1=A2, | |
| 974 | Lifetime=1, | |
| 975 | MinLength=0, | |
| 976 | TextureLength=.3, | |
| 977 | Transparency=NSn(.1, 1), | |
| 978 | Color=CSn(BrickColor.new("Cyan").Color,BrickColor.new("Dark blue").Color)}
| |
| 979 | local Trail12=create("Trail"){
| |
| 980 | Parent=m, | |
| 981 | LightEmission=1, | |
| 982 | LightInfluence=0, | |
| 983 | FaceCamera=false, | |
| 984 | Texture="rbxassetid://945758042", | |
| 985 | Attachment0=A3, | |
| 986 | Attachment1=A4, | |
| 987 | Lifetime=1, | |
| 988 | MinLength=0, | |
| 989 | TextureLength=.3, | |
| 990 | Transparency=NSn(.1, 1), | |
| 991 | Color=CSn(BrickColor.new("Cyan").Color,BrickColor.new("Dark blue").Color)}
| |
| 992 | local Trail13=create("Trail"){
| |
| 993 | Parent=m, | |
| 994 | LightEmission=1, | |
| 995 | LightInfluence=0, | |
| 996 | FaceCamera=false, | |
| 997 | Texture="rbxassetid://945758042", | |
| 998 | Attachment0=A5, | |
| 999 | Attachment1=A6, | |
| 1000 | Lifetime=1, | |
| 1001 | MinLength=0, | |
| 1002 | TextureLength=.3, | |
| 1003 | Transparency=NSn(.1, 1), | |
| 1004 | Color=CSn(BrickColor.new("Cyan").Color,BrickColor.new("Dark blue").Color)}
| |
| 1005 | local Trail14=create("Trail"){
| |
| 1006 | Parent=m, | |
| 1007 | LightEmission=1, | |
| 1008 | LightInfluence=0, | |
| 1009 | FaceCamera=false, | |
| 1010 | Texture="rbxassetid://945758042", | |
| 1011 | Attachment0=A7, | |
| 1012 | Attachment1=A8, | |
| 1013 | Lifetime=1, | |
| 1014 | MinLength=0, | |
| 1015 | TextureLength=.3, | |
| 1016 | Transparency=NSn(.1, 1), | |
| 1017 | Color=CSn(BrickColor.new("Cyan").Color,BrickColor.new("Dark blue").Color)}
| |
| 1018 | local Trail15=create("Trail"){
| |
| 1019 | Parent=m, | |
| 1020 | LightEmission=1, | |
| 1021 | LightInfluence=0, | |
| 1022 | FaceCamera=false, | |
| 1023 | Texture="rbxassetid://945758042", | |
| 1024 | Attachment0=A9, | |
| 1025 | Attachment1=A10, | |
| 1026 | Lifetime=1, | |
| 1027 | MinLength=0, | |
| 1028 | TextureLength=.3, | |
| 1029 | Transparency=NSn(.1, 1), | |
| 1030 | Color=CSn(BrickColor.new("Cyan").Color,BrickColor.new("Dark blue").Color)}
| |
| 1031 | local Trail16=create("Trail"){
| |
| 1032 | Parent=m, | |
| 1033 | LightEmission=1, | |
| 1034 | LightInfluence=0, | |
| 1035 | FaceCamera=false, | |
| 1036 | Texture="rbxassetid://945758042", | |
| 1037 | Attachment0=A11, | |
| 1038 | Attachment1=A12, | |
| 1039 | Lifetime=1, | |
| 1040 | MinLength=0, | |
| 1041 | TextureLength=.3, | |
| 1042 | Transparency=NSn(.1, 1), | |
| 1043 | Color=CSn(BrickColor.new("Cyan").Color,BrickColor.new("Dark blue").Color)}
| |
| 1044 | ||
| 1045 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1046 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.60002327, 5.62146306e-05, 5.07831573e-05, 0.99999994, -6.02600194e-05, 0.000190808089, 6.03433764e-05, 0.99999994, -0.000436922826, -0.00019078172, 0.000436934381, 0.999999881)) | |
| 1047 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1048 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1049 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599981308, 5.61699271e-05, 5.05447388e-05, 0.99999994, -6.02600194e-05, 0.000190808089, 6.03433764e-05, 0.99999994, -0.000436922826, -0.00019078172, 0.000436934381, 0.999999881)) | |
| 1050 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1051 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1052 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599953651, 5.59538603e-05, -2.19345093e-05, 0.000190932158, 6.22972293e-05, -0.99999994, -0.000252766127, 1.00000012, 6.22489752e-05, 1, 0.000252754282, 0.000190947932)) | |
| 1053 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1054 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1055 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.60005188, 5.65573573e-05, -2.28881836e-05, 0.000190932158, 6.22972293e-05, -0.99999994, -0.000252766127, 1.00000012, 6.22489752e-05, 1, 0.000252754282, 0.000190947932)) | |
| 1056 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1057 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1058 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.600036144, 5.65350056e-05, 4.33921814e-05, 0.965975165, -6.29760616e-05, -0.258634627, -4.1567484e-05, 1, -0.0003987448, 0.258634657, 0.000395928393, 0.965975165)) | |
| 1059 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1060 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1061 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599968433, 5.59315085e-05, 4.33921814e-05, 0.965975165, -6.29760616e-05, -0.258634627, -4.1567484e-05, 1, -0.0003987448, 0.258634657, 0.000395928393, 0.965975165)) | |
| 1062 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1063 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1064 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.600043774, 5.65722585e-05, -3.43322754e-05, -0.258634627, 0.000103007784, -0.965975225, -0.000214813932, 1, 0.000164151323, 0.965975225, 0.000249960169, -0.258634597)) | |
| 1065 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1066 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1067 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599961281, 5.59687614e-05, -3.38554382e-05, -0.258634627, 0.000103007784, -0.965975225, -0.000214813932, 1, 0.000164151323, 0.965975225, 0.000249960169, -0.258634597)) | |
| 1068 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1069 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1070 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.600046158, 5.65350056e-05, 3.24249268e-05, 0.866120577, -5.50710247e-05, -0.499835044, -0.000130296641, 0.99999994, -0.000335958146, 0.499835044, 0.000356107164, 0.866120517)) | |
| 1071 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1072 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1073 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599957943, 5.59389591e-05, 3.24249268e-05, 0.866120577, -5.50710247e-05, -0.499835044, -0.000130296641, 0.99999994, -0.000335958146, 0.499835044, 0.000356107164, 0.866120517)) | |
| 1074 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1075 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1076 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.600032806, 5.65648079e-05, -4.57763672e-05, -0.499835044, 0.000143036465, -0.866120577, -0.000152027264, 0.99999994, 0.000252880505, 0.866120577, 0.000258072512, -0.499834985)) | |
| 1077 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1078 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1079 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599971771, 5.59613109e-05, -4.29153442e-05, -0.499835044, 0.000143036465, -0.866120577, -0.000152027264, 0.99999994, 0.000252880505, 0.866120577, 0.000258072512, -0.499834985)) | |
| 1080 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1081 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1082 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599952459, 5.59389591e-05, 2.00271606e-05, 0.707241654, -3.7075326e-05, -0.706971943, -0.00019946543, 1, -0.000251983991, 0.706971884, 0.000319230021, 0.707241595)) | |
| 1083 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1084 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1085 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599985123, 5.59687614e-05, -4.95910645e-05, -0.706971943, 0.000179655064, -0.707241654, -6.80531157e-05, 1, 0.00032204928, 0.707241714, 0.000275809783, -0.706971824)) | |
| 1086 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1087 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1088 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.600018501, 5.65648079e-05, -5.22136688e-05, -0.706971943, 0.000179655064, -0.707241654, -6.80531157e-05, 1, 0.00032204928, 0.707241714, 0.000275809783, -0.706971824)) | |
| 1089 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1090 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1091 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.600052118, 5.65424562e-05, 2.00271606e-05, 0.707241654, -3.7075326e-05, -0.706971943, -0.00019946543, 1, -0.000251983991, 0.706971884, 0.000319230021, 0.707241595)) | |
| 1092 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1093 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1094 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.600054741, 5.65499067e-05, 5.7220459e-06, 0.500164807, -1.02151007e-05, -0.8659302, -0.000244551949, 1.00000012, -0.000153050874, 0.86593014, 0.000288315583, 0.500164807)) | |
| 1095 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1096 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1097 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.60000515, 5.65797091e-05, -5.57899475e-05, -0.8659302, 0.000210368336, -0.500164866, 3.08799863e-05, 1, 0.000367135799, 0.500164926, 0.000302468892, -0.8659302)) | |
| 1098 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1099 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1100 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599949121, 5.59538603e-05, 5.7220459e-06, 0.500164807, -1.02151007e-05, -0.8659302, -0.000244551949, 1.00000012, -0.000153050874, 0.86593014, 0.000288315583, 0.500164807)) | |
| 1101 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1102 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1103 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.59999752, 5.59687614e-05, -5.17368317e-05, -0.8659302, 0.000210368336, -0.500164866, 3.08799863e-05, 1, 0.000367135799, 0.500164926, 0.000302468892, -0.8659302)) | |
| 1104 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1105 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1106 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599990845, 5.65573573e-05, -5.55515289e-05, -0.9658764, 0.000233083105, -0.259003252, 0.000138002797, 1, 0.000385282619, 0.259003311, 0.000336392171, -0.965876281)) | |
| 1107 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1108 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1109 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.600054264, 5.65573573e-05, -8.58306885e-06, 0.259003222, 2.36790056e-05, -0.9658764, -0.000262698741, 1.00000012, -4.59280636e-05, 0.965876341, 0.000265630079, 0.259003252)) | |
| 1110 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1111 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1112 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.599949598, 5.59464097e-05, -7.62939453e-06, 0.259003222, 2.36790056e-05, -0.9658764, -0.000262698741, 1.00000012, -4.59280636e-05, 0.965876341, 0.000265630079, 0.259003252)) | |
| 1113 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1114 | Mode1=parts(m,"Mode1",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.SmoothPlastic,0,0) | |
| 1115 | Mode1Weld=welds(Mode1,"Mode1Weld",Main2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.600013733, 5.59538603e-05, -5.10215759e-05, -0.9658764, 0.000233083105, -0.259003252, 0.000138002797, 1, 0.000385282619, 0.259003311, 0.000336392171, -0.965876281)) | |
| 1116 | meshs(Mode1,"Mesh",Vector3.new(0.5, 0.5, 0.899999976),Enum.MeshType.Brick,"") | |
| 1117 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1118 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799985886, 5.61624765e-05, 5.07831573e-05, 0.99999994, -6.02600194e-05, 0.000190808089, 6.03433764e-05, 0.99999994, -0.000436922826, -0.00019078172, 0.000436934381, 0.999999881)) | |
| 1119 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1120 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1121 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799952269, 5.59389591e-05, -2.76565552e-05, 0.000190932158, 6.22972293e-05, -0.99999994, -0.000252766127, 1.00000012, 6.22489752e-05, 1, 0.000252754282, 0.000190947932)) | |
| 1122 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1123 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1124 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799969196, 5.59166074e-05, 4.29153442e-05, 0.965975165, -6.29760616e-05, -0.258634627, -4.1567484e-05, 1, -0.0003987448, 0.258634657, 0.000395928393, 0.965975165)) | |
| 1125 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1126 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1127 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799960136, 5.59464097e-05, -2.90870667e-05, -0.258634627, 0.000103007784, -0.965975225, -0.000214813932, 1, 0.000164151323, 0.965975225, 0.000249960169, -0.258634597)) | |
| 1128 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1129 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1130 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799958229, 5.59166074e-05, 3.14712524e-05, 0.866120577, -5.50710247e-05, -0.499835044, -0.000130296641, 0.99999994, -0.000335958146, 0.499835044, 0.000356107164, 0.866120517)) | |
| 1131 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1132 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1133 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799968719, 5.59389591e-05, -3.86238098e-05, -0.499835044, 0.000143036465, -0.866120577, -0.000152027264, 0.99999994, 0.000252880505, 0.866120577, 0.000258072512, -0.499834985)) | |
| 1134 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1135 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1136 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799954176, 5.59166074e-05, 2.00271606e-05, 0.707241654, -3.7075326e-05, -0.706971943, -0.00019946543, 1, -0.000251983991, 0.706971884, 0.000319230021, 0.707241595)) | |
| 1137 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1138 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1139 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799984932, 5.59464097e-05, -4.83989716e-05, -0.706971943, 0.000179655064, -0.707241654, -6.80531157e-05, 1, 0.00032204928, 0.707241714, 0.000275809783, -0.706971824)) | |
| 1140 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1141 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1142 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.7999475, 5.59315085e-05, 4.76837158e-06, 0.500164807, -1.02151007e-05, -0.8659302, -0.000244551949, 1.00000012, -0.000153050874, 0.86593014, 0.000288315583, 0.500164807)) | |
| 1143 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1144 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1145 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.800001144, 5.59538603e-05, -5.55515289e-05, -0.8659302, 0.000210368336, -0.500164866, 3.08799863e-05, 1, 0.000367135799, 0.500164926, 0.000302468892, -0.8659302)) | |
| 1146 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1147 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1148 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.799948931, 5.59315085e-05, -5.7220459e-06, 0.259003222, 2.36790056e-05, -0.9658764, -0.000262698741, 1.00000012, -4.59280636e-05, 0.965876341, 0.000265630079, 0.259003252)) | |
| 1149 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1150 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1151 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.800010681, 5.59389591e-05, -5.12599945e-05, -0.9658764, 0.000233083105, -0.259003252, 0.000138002797, 1, 0.000385282619, 0.259003311, 0.000336392171, -0.965876281)) | |
| 1152 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1153 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1154 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800024509, 5.620718e-05, 5.07831573e-05, 0.99999994, -6.02600194e-05, 0.000190808089, 6.03433764e-05, 0.99999994, -0.000436922826, -0.00019078172, 0.000436934381, 0.999999881)) | |
| 1155 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1156 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1157 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800052643, 5.65499067e-05, -2.67028809e-05, 0.000190932158, 6.22972293e-05, -0.99999994, -0.000252766127, 1.00000012, 6.22489752e-05, 1, 0.000252754282, 0.000190947932)) | |
| 1158 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1159 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1160 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800018311, 5.65499067e-05, -5.12599945e-05, -0.706971943, 0.000179655064, -0.707241654, -6.80531157e-05, 1, 0.00032204928, 0.707241714, 0.000275809783, -0.706971824)) | |
| 1161 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1162 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1163 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.80003643, 5.6527555e-05, 4.29153442e-05, 0.965975165, -6.29760616e-05, -0.258634627, -4.1567484e-05, 1, -0.0003987448, 0.258634657, 0.000395928393, 0.965975165)) | |
| 1164 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1165 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1166 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800045967, 5.6527555e-05, 3.24249268e-05, 0.866120577, -5.50710247e-05, -0.499835044, -0.000130296641, 0.99999994, -0.000335958146, 0.499835044, 0.000356107164, 0.866120517)) | |
| 1167 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1168 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1169 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800044537, 5.65573573e-05, -3.14712524e-05, -0.258634627, 0.000103007784, -0.965975225, -0.000214813932, 1, 0.000164151323, 0.965975225, 0.000249960169, -0.258634597)) | |
| 1170 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1171 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1172 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800034523, 5.65499067e-05, -4.29153442e-05, -0.499835044, 0.000143036465, -0.866120577, -0.000152027264, 0.99999994, 0.000252880505, 0.866120577, 0.000258072512, -0.499834985)) | |
| 1173 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1174 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1175 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800055981, 5.65424562e-05, 5.7220459e-06, 0.500164807, -1.02151007e-05, -0.8659302, -0.000244551949, 1.00000012, -0.000153050874, 0.86593014, 0.000288315583, 0.500164807)) | |
| 1176 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1177 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1178 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.799993515, 5.65499067e-05, -5.55515289e-05, -0.9658764, 0.000233083105, -0.259003252, 0.000138002797, 1, 0.000385282619, 0.259003311, 0.000336392171, -0.965876281)) | |
| 1179 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1180 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1181 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800052881, 5.65424562e-05, -7.62939453e-06, 0.259003222, 2.36790056e-05, -0.9658764, -0.000262698741, 1.00000012, -4.59280636e-05, 0.965876341, 0.000265630079, 0.259003252)) | |
| 1182 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1183 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1184 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800052643, 5.6527555e-05, 2.19345093e-05, 0.707241654, -3.7075326e-05, -0.706971943, -0.00019946543, 1, -0.000251983991, 0.706971884, 0.000319230021, 0.707241595)) | |
| 1185 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1186 | Mode2=parts(m,"Mode2",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.SmoothPlastic,0,0) | |
| 1187 | Mode2Weld=welds(Mode2,"Mode2Weld",Main3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.800003052, 5.65648079e-05, -5.81741333e-05, -0.8659302, 0.000210368336, -0.500164866, 3.08799863e-05, 1, 0.000367135799, 0.500164926, 0.000302468892, -0.8659302)) | |
| 1188 | meshs(Mode2,"Mesh",Vector3.new(0.300000012, 0.200000003, 1.20000005),Enum.MeshType.Brick,"") | |
| 1189 | ||
| 1190 | Mode1=parts(m,"Mode1",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Institutional white",Enum.Material.Neon,0,0) | |
| 1191 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.332840919, 0, -0.332841396, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1192 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 1),Enum.MeshType.Brick,"") | |
| 1193 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1194 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.682841301, 0, -0.282841682, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1195 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1196 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1197 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.682841301, 0, -0.282841682, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1198 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1199 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1200 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.60031223, 0, 0.54036808, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1201 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1202 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1203 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.60031176, 0, 0.540352821, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1204 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1205 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1206 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -3.27069759, 0.0499992371, 0, 1, 0, 0, 0, 1, 1, 0, 0)) | |
| 1207 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1208 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1209 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499982834, 3.27069759, 0, 1, 0, 1, 0, 0, 0, 0, -1)) | |
| 1210 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1211 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1212 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499954224, -2.27069473, 0, 1, 0, -1, 0, 0, 0, 0, 1)) | |
| 1213 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1214 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1215 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 2.27069473, 0.0500020981, 0, 1, 0, 0, 0, -1, -1, 0, 0)) | |
| 1216 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1217 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.199998677, 0.199998677),"Institutional white",Enum.Material.Neon,0,0) | |
| 1218 | Mode1Weld=welds(Mode1,"Mode1Weld",Center1,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.686394691, 0, -0.686394215, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1219 | meshs(Mode1,"Mesh",Vector3.new(0.800000012, 0.200000003, 0.800000012),Enum.MeshType.Brick,"") | |
| 1220 | Mode2=parts(m,"Mode2",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Really black",Enum.Material.Neon,0,0) | |
| 1221 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.1106596, 0, -1.11065865, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1222 | meshs(Mode2,"Mesh",Vector3.new(0.400000006, 0.200000003, 0.400000006),Enum.MeshType.Brick,"") | |
| 1223 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1224 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.63713026, 0, -0.494973183, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1225 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1226 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1227 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.637131691, 0, -0.494972706, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1228 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1229 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1230 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.13302898, 0, 0.521321297, -0.342019916, 0, -0.939692736, 0, 1, 0, 0.939692736, 0, -0.342019886)) | |
| 1231 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1232 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1233 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.13302612, 0, 0.521337032, -0.342019916, 0, 0.939692736, 0, 1, 0, -0.939692736, 0, -0.342019886)) | |
| 1234 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1235 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1236 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16710377, 0, 0.719963074, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1237 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1238 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1239 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16710615, 0, 0.719948769, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1240 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1241 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1242 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.753552437, 0, -0.0707101822, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1243 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1244 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1245 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.753552437, 0, -0.0707101822, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1246 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1247 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1248 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.1170969, 0.71996212, 3.49874032e-15, -1, 6.16920301e-16, -0.173647568, 0, 0.984807849, -0.984807849, -3.55271368e-15, -0.173647568)) | |
| 1249 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1250 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1251 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.11709929, 0.719947815, 0, 1, 0, 0.173647612, 0, 0.984807849, 0.984807849, 0, -0.173647612)) | |
| 1252 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1253 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1254 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-06, 0.4535532, 0.0707120895, -4.21466595e-08, -1.00000858, 4.21466595e-08, -0.707110882, 8.88179944e-15, -0.707110941, 0.707110226, -5.96045986e-08, -0.707110167)) | |
| 1255 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1256 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1257 | Mode2Weld=welds(Mode2,"Mode2Weld",Center1,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.453554153, 0.0707101822, 4.26325641e-14, 1, 8.42937382e-08, 0.707106829, 5.96046448e-08, -0.707106769, -0.707106769, 5.96047087e-08, -0.707106829)) | |
| 1258 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1259 | Mode1=parts(m,"Mode1",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Institutional white",Enum.Material.Neon,0,0) | |
| 1260 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.332840919, 0, -0.332841396, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1261 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 1),Enum.MeshType.Brick,"") | |
| 1262 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1263 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.682841301, 0, -0.282841682, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1264 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1265 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1266 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.682841301, 0, -0.282841682, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1267 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1268 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1269 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.60031223, 0, 0.54036808, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1270 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1271 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1272 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.60031176, 0, 0.540352821, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1273 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1274 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1275 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -3.27069759, 0.0499992371, 0, 1, 0, 0, 0, 1, 1, 0, 0)) | |
| 1276 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1277 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1278 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499982834, 3.27069759, 0, 1, 0, 1, 0, 0, 0, 0, -1)) | |
| 1279 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1280 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1281 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499954224, -2.27069473, 0, 1, 0, -1, 0, 0, 0, 0, 1)) | |
| 1282 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1283 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1284 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 2.27069473, 0.0500020981, 0, 1, 0, 0, 0, -1, -1, 0, 0)) | |
| 1285 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1286 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.199998677, 0.199998677),"Institutional white",Enum.Material.Neon,0,0) | |
| 1287 | Mode1Weld=welds(Mode1,"Mode1Weld",Center2,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.686394691, 0, -0.686394215, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1288 | meshs(Mode1,"Mesh",Vector3.new(0.800000012, 0.200000003, 0.800000012),Enum.MeshType.Brick,"") | |
| 1289 | Mode2=parts(m,"Mode2",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Really black",Enum.Material.Neon,0,0) | |
| 1290 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.1106596, 0, -1.11065865, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1291 | meshs(Mode2,"Mesh",Vector3.new(0.400000006, 0.200000003, 0.400000006),Enum.MeshType.Brick,"") | |
| 1292 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1293 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.63713026, 0, -0.494973183, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1294 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1295 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1296 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.637131691, 0, -0.494972706, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1297 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1298 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1299 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.13302898, 0, 0.521321297, -0.342019916, 0, -0.939692736, 0, 1, 0, 0.939692736, 0, -0.342019886)) | |
| 1300 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1301 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1302 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.13302612, 0, 0.521337032, -0.342019916, 0, 0.939692736, 0, 1, 0, -0.939692736, 0, -0.342019886)) | |
| 1303 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1304 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1305 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16710377, 0, 0.719963074, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1306 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1307 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1308 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16710615, 0, 0.719948769, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1309 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1310 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1311 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.753552437, 0, -0.0707101822, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1312 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1313 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1314 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.753552437, 0, -0.0707101822, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1315 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1316 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1317 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.1170969, 0.71996212, 3.49874032e-15, -1, 6.16920301e-16, -0.173647568, 0, 0.984807849, -0.984807849, -3.55271368e-15, -0.173647568)) | |
| 1318 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1319 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1320 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.11709929, 0.719947815, 0, 1, 0, 0.173647612, 0, 0.984807849, 0.984807849, 0, -0.173647612)) | |
| 1321 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1322 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1323 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-06, 0.4535532, 0.0707120895, -4.21466595e-08, -1.00000858, 4.21466595e-08, -0.707110882, 8.88179944e-15, -0.707110941, 0.707110226, -5.96045986e-08, -0.707110167)) | |
| 1324 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1325 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1326 | Mode2Weld=welds(Mode2,"Mode2Weld",Center2,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.453554153, 0.0707101822, 4.26325641e-14, 1, 8.42937382e-08, 0.707106829, 5.96046448e-08, -0.707106769, -0.707106769, 5.96047087e-08, -0.707106829)) | |
| 1327 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1328 | Mode1=parts(m,"Mode1",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Institutional white",Enum.Material.Neon,0,0) | |
| 1329 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.332840919, 0, -0.332841396, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1330 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 1),Enum.MeshType.Brick,"") | |
| 1331 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1332 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.682841301, 0, -0.282841682, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1333 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1334 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1335 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.682841301, 0, -0.282841682, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1336 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1337 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1338 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.60031223, 0, 0.54036808, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1339 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1340 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1341 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.60031176, 0, 0.540352821, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1342 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1343 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1344 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -3.27069759, 0.0499992371, 0, 1, 0, 0, 0, 1, 1, 0, 0)) | |
| 1345 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1346 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1347 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499982834, 3.27069759, 0, 1, 0, 1, 0, 0, 0, 0, -1)) | |
| 1348 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1349 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1350 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499954224, -2.27069473, 0, 1, 0, -1, 0, 0, 0, 0, 1)) | |
| 1351 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1352 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1353 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 2.27069473, 0.0500020981, 0, 1, 0, 0, 0, -1, -1, 0, 0)) | |
| 1354 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1355 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.199998677, 0.199998677),"Institutional white",Enum.Material.Neon,0,0) | |
| 1356 | Mode1Weld=welds(Mode1,"Mode1Weld",Center3,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.686394691, 0, -0.686394215, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1357 | meshs(Mode1,"Mesh",Vector3.new(0.800000012, 0.200000003, 0.800000012),Enum.MeshType.Brick,"") | |
| 1358 | Mode2=parts(m,"Mode2",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Really black",Enum.Material.Neon,0,0) | |
| 1359 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.1106596, 0, -1.11065865, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1360 | meshs(Mode2,"Mesh",Vector3.new(0.400000006, 0.200000003, 0.400000006),Enum.MeshType.Brick,"") | |
| 1361 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1362 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.63713026, 0, -0.494973183, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1363 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1364 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1365 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.637131691, 0, -0.494972706, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1366 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1367 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1368 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.13302898, 0, 0.521321297, -0.342019916, 0, -0.939692736, 0, 1, 0, 0.939692736, 0, -0.342019886)) | |
| 1369 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1370 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1371 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.13302612, 0, 0.521337032, -0.342019916, 0, 0.939692736, 0, 1, 0, -0.939692736, 0, -0.342019886)) | |
| 1372 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1373 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1374 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16710377, 0, 0.719963074, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1375 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1376 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1377 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16710615, 0, 0.719948769, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1378 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1379 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1380 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.753552437, 0, -0.0707101822, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1381 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1382 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1383 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.753552437, 0, -0.0707101822, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1384 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1385 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1386 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.1170969, 0.71996212, 3.49874032e-15, -1, 6.16920301e-16, -0.173647568, 0, 0.984807849, -0.984807849, -3.55271368e-15, -0.173647568)) | |
| 1387 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1388 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1389 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.11709929, 0.719947815, 0, 1, 0, 0.173647612, 0, 0.984807849, 0.984807849, 0, -0.173647612)) | |
| 1390 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1391 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1392 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-06, 0.4535532, 0.0707120895, -4.21466595e-08, -1.00000858, 4.21466595e-08, -0.707110882, 8.88179944e-15, -0.707110941, 0.707110226, -5.96045986e-08, -0.707110167)) | |
| 1393 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1394 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1395 | Mode2Weld=welds(Mode2,"Mode2Weld",Center3,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.453554153, 0.0707101822, 4.26325641e-14, 1, 8.42937382e-08, 0.707106829, 5.96046448e-08, -0.707106769, -0.707106769, 5.96047087e-08, -0.707106829)) | |
| 1396 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1397 | Mode1=parts(m,"Mode1",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Institutional white",Enum.Material.Neon,0,0) | |
| 1398 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.332840919, 0, -0.332841396, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1399 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 1),Enum.MeshType.Brick,"") | |
| 1400 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1401 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.682841301, 0, -0.282841682, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1402 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1403 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1404 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.682841301, 0, -0.282841682, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1405 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1406 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1407 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.60031223, 0, 0.54036808, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1408 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1409 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1410 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.60031176, 0, 0.540352821, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1411 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1412 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1413 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -3.27069759, 0.0499992371, 0, 1, 0, 0, 0, 1, 1, 0, 0)) | |
| 1414 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1415 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1416 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499982834, 3.27069759, 0, 1, 0, 1, 0, 0, 0, 0, -1)) | |
| 1417 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1418 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1419 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499954224, -2.27069473, 0, 1, 0, -1, 0, 0, 0, 0, 1)) | |
| 1420 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1421 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1422 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 2.27069473, 0.0500020981, 0, 1, 0, 0, 0, -1, -1, 0, 0)) | |
| 1423 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1424 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.199998677, 0.199998677),"Institutional white",Enum.Material.Neon,0,0) | |
| 1425 | Mode1Weld=welds(Mode1,"Mode1Weld",Center4,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.686394691, 0, -0.686394215, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1426 | meshs(Mode1,"Mesh",Vector3.new(0.800000012, 0.200000003, 0.800000012),Enum.MeshType.Brick,"") | |
| 1427 | Mode2=parts(m,"Mode2",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Really black",Enum.Material.Neon,0,0) | |
| 1428 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.1106596, 0, -1.11065865, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1429 | meshs(Mode2,"Mesh",Vector3.new(0.400000006, 0.200000003, 0.400000006),Enum.MeshType.Brick,"") | |
| 1430 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1431 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.63713026, 0, -0.494973183, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1432 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1433 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1434 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.637131691, 0, -0.494972706, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1435 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1436 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1437 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.13302898, 0, 0.521321297, -0.342019916, 0, -0.939692736, 0, 1, 0, 0.939692736, 0, -0.342019886)) | |
| 1438 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1439 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1440 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.13302612, 0, 0.521337032, -0.342019916, 0, 0.939692736, 0, 1, 0, -0.939692736, 0, -0.342019886)) | |
| 1441 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1442 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1443 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16710377, 0, 0.719963074, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1444 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1445 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1446 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16710615, 0, 0.719948769, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1447 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1448 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1449 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.753552437, 0, -0.0707101822, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1450 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1451 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1452 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.753552437, 0, -0.0707101822, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1453 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1454 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1455 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.1170969, 0.71996212, 3.49874032e-15, -1, 6.16920301e-16, -0.173647568, 0, 0.984807849, -0.984807849, -3.55271368e-15, -0.173647568)) | |
| 1456 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1457 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1458 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.11709929, 0.719947815, 0, 1, 0, 0.173647612, 0, 0.984807849, 0.984807849, 0, -0.173647612)) | |
| 1459 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1460 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1461 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-06, 0.4535532, 0.0707120895, -4.21466595e-08, -1.00000858, 4.21466595e-08, -0.707110882, 8.88179944e-15, -0.707110941, 0.707110226, -5.96045986e-08, -0.707110167)) | |
| 1462 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1463 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1464 | Mode2Weld=welds(Mode2,"Mode2Weld",Center4,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.453554153, 0.0707101822, 4.26325641e-14, 1, 8.42937382e-08, 0.707106829, 5.96046448e-08, -0.707106769, -0.707106769, 5.96047087e-08, -0.707106829)) | |
| 1465 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1466 | Mode1=parts(m,"Mode1",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Institutional white",Enum.Material.Neon,0,0) | |
| 1467 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.332840919, 0, -0.332841396, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1468 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 1),Enum.MeshType.Brick,"") | |
| 1469 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1470 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.682841301, 0, -0.282841682, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1471 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1472 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1473 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.682841301, 0, -0.282841682, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1474 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1475 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1476 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.60031223, 0, 0.54036808, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1477 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1478 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1479 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.60031176, 0, 0.540352821, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1480 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1481 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1482 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -3.27069759, 0.0499992371, 0, 1, 0, 0, 0, 1, 1, 0, 0)) | |
| 1483 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1484 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1485 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499982834, 3.27069759, 0, 1, 0, 1, 0, 0, 0, 0, -1)) | |
| 1486 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1487 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1488 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499954224, -2.27069473, 0, 1, 0, -1, 0, 0, 0, 0, 1)) | |
| 1489 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1490 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1491 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 2.27069473, 0.0500020981, 0, 1, 0, 0, 0, -1, -1, 0, 0)) | |
| 1492 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1493 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.199998677, 0.199998677),"Institutional white",Enum.Material.Neon,0,0) | |
| 1494 | Mode1Weld=welds(Mode1,"Mode1Weld",Center5,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.686394691, 0, -0.686394215, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1495 | meshs(Mode1,"Mesh",Vector3.new(0.800000012, 0.200000003, 0.800000012),Enum.MeshType.Brick,"") | |
| 1496 | Mode2=parts(m,"Mode2",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Really black",Enum.Material.Neon,0,0) | |
| 1497 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.1106596, 0, -1.11065865, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1498 | meshs(Mode2,"Mesh",Vector3.new(0.400000006, 0.200000003, 0.400000006),Enum.MeshType.Brick,"") | |
| 1499 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1500 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.63713026, 0, -0.494973183, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1501 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1502 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1503 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.637131691, 0, -0.494972706, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1504 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1505 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1506 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.13302898, 0, 0.521321297, -0.342019916, 0, -0.939692736, 0, 1, 0, 0.939692736, 0, -0.342019886)) | |
| 1507 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1508 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1509 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.13302612, 0, 0.521337032, -0.342019916, 0, 0.939692736, 0, 1, 0, -0.939692736, 0, -0.342019886)) | |
| 1510 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1511 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1512 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16710377, 0, 0.719963074, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1513 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1514 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1515 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16710615, 0, 0.719948769, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1516 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1517 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1518 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.753552437, 0, -0.0707101822, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1519 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1520 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1521 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.753552437, 0, -0.0707101822, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1522 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1523 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1524 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.1170969, 0.71996212, 3.49874032e-15, -1, 6.16920301e-16, -0.173647568, 0, 0.984807849, -0.984807849, -3.55271368e-15, -0.173647568)) | |
| 1525 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1526 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1527 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.11709929, 0.719947815, 0, 1, 0, 0.173647612, 0, 0.984807849, 0.984807849, 0, -0.173647612)) | |
| 1528 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1529 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1530 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-06, 0.4535532, 0.0707120895, -4.21466595e-08, -1.00000858, 4.21466595e-08, -0.707110882, 8.88179944e-15, -0.707110941, 0.707110226, -5.96045986e-08, -0.707110167)) | |
| 1531 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1532 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1533 | Mode2Weld=welds(Mode2,"Mode2Weld",Center5,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.453554153, 0.0707101822, 4.26325641e-14, 1, 8.42937382e-08, 0.707106829, 5.96046448e-08, -0.707106769, -0.707106769, 5.96047087e-08, -0.707106829)) | |
| 1534 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1535 | Mode1=parts(m,"Mode1",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Institutional white",Enum.Material.Neon,0,0) | |
| 1536 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.332840919, 0, -0.332841396, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1537 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 1),Enum.MeshType.Brick,"") | |
| 1538 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1539 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.682841301, 0, -0.282841682, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1540 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1541 | Mode1=parts(m,"Mode1",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1542 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.682841301, 0, -0.282841682, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1543 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1544 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1545 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.60031223, 0, 0.54036808, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1546 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1547 | Mode1=parts(m,"Mode1",Vector3.new(1.79998839, 0.199998677, 0.199998692),"Institutional white",Enum.Material.Neon,0,0) | |
| 1548 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.60031176, 0, 0.540352821, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1549 | meshs(Mode1,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1550 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1551 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -3.27069759, 0.0499992371, 0, 1, 0, 0, 0, 1, 1, 0, 0)) | |
| 1552 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1553 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1554 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499982834, 3.27069759, 0, 1, 0, 1, 0, 0, 0, 0, -1)) | |
| 1555 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1556 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.0999993384, 0.999993503),"Institutional white",Enum.Material.Neon,0,0) | |
| 1557 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.0499954224, -2.27069473, 0, 1, 0, -1, 0, 0, 0, 0, 1)) | |
| 1558 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1559 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.999993503, 0.0999993384),"Institutional white",Enum.Material.Neon,0,0) | |
| 1560 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 2.27069473, 0.0500020981, 0, 1, 0, 0, 0, -1, -1, 0, 0)) | |
| 1561 | meshs(Mode1,"Mesh",Vector3.new(0.200000003, 1, 1),Enum.MeshType.Wedge,"") | |
| 1562 | Mode1=parts(m,"Mode1",Vector3.new(0.199998677, 0.199998677, 0.199998677),"Institutional white",Enum.Material.Neon,0,0) | |
| 1563 | Mode1Weld=welds(Mode1,"Mode1Weld",Center6,Mode1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.686394691, 0, -0.686394215, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1564 | meshs(Mode1,"Mesh",Vector3.new(0.800000012, 0.200000003, 0.800000012),Enum.MeshType.Brick,"") | |
| 1565 | Mode2=parts(m,"Mode2",Vector3.new(0.299998015, 0.199998677, 0.299998015),"Really black",Enum.Material.Neon,0,0) | |
| 1566 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.1106596, 0, -1.11065865, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1567 | meshs(Mode2,"Mesh",Vector3.new(0.400000006, 0.200000003, 0.400000006),Enum.MeshType.Brick,"") | |
| 1568 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1569 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.63713026, 0, -0.494973183, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1570 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1571 | Mode2=parts(m,"Mode2",Vector3.new(0.349997699, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1572 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.637131691, 0, -0.494972706, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1573 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1574 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1575 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.13302898, 0, 0.521321297, -0.342019916, 0, -0.939692736, 0, 1, 0, 0.939692736, 0, -0.342019886)) | |
| 1576 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1577 | Mode2=parts(m,"Mode2",Vector3.new(0.699995399, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1578 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.13302612, 0, 0.521337032, -0.342019916, 0, 0.939692736, 0, 1, 0, -0.939692736, 0, -0.342019886)) | |
| 1579 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.200000003),Enum.MeshType.Brick,"") | |
| 1580 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1581 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16710377, 0, 0.719963074, -0.173647985, 0, 0.984807849, 0, 1, 0, -0.984807849, 0, -0.173647985)) | |
| 1582 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1583 | Mode2=parts(m,"Mode2",Vector3.new(1.19999218, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1584 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16710615, 0, 0.719948769, -0.173647985, 0, -0.984807849, 0, 1, 0, 0.984807849, 0, -0.173647985)) | |
| 1585 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1586 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1587 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.753552437, 0, -0.0707101822, 0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, 0.707106829)) | |
| 1588 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1589 | Mode2=parts(m,"Mode2",Vector3.new(0.399997354, 0.199998677, 0.199998692),"Really black",Enum.Material.Neon,0,0) | |
| 1590 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.753552437, 0, -0.0707101822, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829)) | |
| 1591 | meshs(Mode2,"Mesh",Vector3.new(1, 0.200000003, 0.300000012),Enum.MeshType.Brick,"") | |
| 1592 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1593 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.1170969, 0.71996212, 3.49874032e-15, -1, 6.16920301e-16, -0.173647568, 0, 0.984807849, -0.984807849, -3.55271368e-15, -0.173647568)) | |
| 1594 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1595 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.699995399, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1596 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -2.11709929, 0.719947815, 0, 1, 0, 0.173647612, 0, 0.984807849, 0.984807849, 0, -0.173647612)) | |
| 1597 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1598 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1599 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-06, 0.4535532, 0.0707120895, -4.21466595e-08, -1.00000858, 4.21466595e-08, -0.707110882, 8.88179944e-15, -0.707110941, 0.707110226, -5.96045986e-08, -0.707110167)) | |
| 1600 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1601 | Mode2=parts(m,"Mode2",Vector3.new(0.199998677, 0.199998692, 0.199998677),"Really black",Enum.Material.Neon,0,0) | |
| 1602 | Mode2Weld=welds(Mode2,"Mode2Weld",Center6,Mode2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.453554153, 0.0707101822, 4.26325641e-14, 1, 8.42937382e-08, 0.707106829, 5.96046448e-08, -0.707106769, -0.707106769, 5.96047087e-08, -0.707106829)) | |
| 1603 | meshs(Mode2,"Mesh",Vector3.new(0.200000003, 1, 0.300000012),Enum.MeshType.Wedge,"") | |
| 1604 | ||
| 1605 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Carnation pink",Enum.Material.SmoothPlastic,0,0) | |
| 1606 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034308, 0.699761629, 6.67572021e-06, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1607 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1608 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Pastel light blue",Enum.Material.Neon,0,0) | |
| 1609 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034368, 0.399761677, 0.200007439, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1610 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1611 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Lapis",Enum.Material.Neon,0,0) | |
| 1612 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034428, 0.399762154, -0.199994087, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1613 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1614 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Forest green",Enum.Material.Neon,0,0) | |
| 1615 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034368, 0.0997622013, 6.67572021e-06, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1616 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1617 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Rust",Enum.Material.Neon,0,0) | |
| 1618 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034428, -0.300237417, 6.67572021e-06, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1619 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1620 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Deep blue",Enum.Material.Neon,0,0) | |
| 1621 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034368, -0.70023632, 6.67572021e-06, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1622 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1623 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Maroon",Enum.Material.Neon,0,0) | |
| 1624 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034428, 0.0997626781, 0.600008011, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1625 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1626 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Fossil",Enum.Material.Neon,0,0) | |
| 1627 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034368, 0.0997633934, -0.599994659, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1628 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1629 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Bright orange",Enum.Material.Neon,0,0) | |
| 1630 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034368, -0.500236511, -0.799995899, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1631 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1632 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Bright blue",Enum.Material.Neon,0,0) | |
| 1633 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034487, -0.500236511, 0.800004005, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1634 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1635 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Mulberry",Enum.Material.Neon,0,0) | |
| 1636 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034428, -0.300236464, 0.40000248, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1637 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1638 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Daisy orange",Enum.Material.Neon,0,0) | |
| 1639 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034308, -0.300236464, -0.399999619, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1640 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1641 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Deep orange",Enum.Material.Neon,0,0) | |
| 1642 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034368, -0.70023632, 6.67572021e-06, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1643 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1644 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Buttermilk",Enum.Material.Neon,0,0) | |
| 1645 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034308, -0.300236464, -0.399999619, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1646 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1647 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Dark indigo",Enum.Material.Neon,0,0) | |
| 1648 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034428, -0.300236464, 0.40000248, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1649 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1650 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Baby blue",Enum.Material.Neon,0,0) | |
| 1651 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034547, -0.500236034, 0.800003052, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1652 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1653 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Neon orange",Enum.Material.Neon,0,0) | |
| 1654 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034666, -0.500236034, -0.799996853, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1655 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1656 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Rust",Enum.Material.CorrodedMetal,0,0) | |
| 1657 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034666, -0.300235987, 6.67572021e-06, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1658 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1659 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really red",Enum.Material.Neon,0,0) | |
| 1660 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034547, 0.0997638702, 0.600008965, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1661 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1662 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Shamrock",Enum.Material.Neon,0,0) | |
| 1663 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034547, 0.0997636318, 6.67572021e-06, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1664 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1665 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Bright red",Enum.Material.Neon,0,0) | |
| 1666 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034666, 0.0997636318, -0.599995613, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1667 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1668 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Navy blue",Enum.Material.Neon,0,0) | |
| 1669 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034785, 0.399763107, -0.199994087, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1670 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1671 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Cool yellow",Enum.Material.Neon,0,0) | |
| 1672 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034845, 0.399763346, 0.200007439, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1673 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1674 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Pink",Enum.Material.Neon,0,0) | |
| 1675 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034845, 0.699763298, 6.67572021e-06, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1676 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1677 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.800000072, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1678 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034785, -0.300235748, 3.81469727e-06, -6.19999992e-05, 9.30000024e-05, -1, -0.000406000006, 1, 9.30251772e-05, 1, 0.000406005769, -6.19622442e-05)) | |
| 1679 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1680 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.300000012, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1681 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034726, 0.23640132, -0.0498771667, -6.19999992e-05, 9.30000024e-05, -1, 0.499648243, 0.866228402, 4.95810527e-05, 0.866228402, -0.499648243, -0.000100173456)) | |
| 1682 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1683 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.800000072, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1684 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034964, 3.81469727e-06, 0.300235748, -6.19999992e-05, 9.30000024e-05, -1, 1, 0.000406000006, -6.19622442e-05, 0.000405994244, -1, -9.30251772e-05)) | |
| 1685 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1686 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.400000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1687 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034726, 0.286395073, 0.0498862267, -6.19999992e-05, 9.30000024e-05, -1, -0.50035131, 0.865822554, 0.000111543275, 0.865822554, 0.50035131, -7.1483264e-06)) | |
| 1688 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1689 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.300000012, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1690 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034428, 0.446648598, 0.33438015, -6.19999992e-05, 9.30000024e-05, -1, -0.966030777, 0.258426934, 8.39276108e-05, 0.258426934, 0.966030777, 7.38183953e-05)) | |
| 1691 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1692 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.5, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1693 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034964, 0.189986229, -0.496524811, -6.19999992e-05, 9.30000024e-05, -1, -0.50035131, 0.865822554, 0.000111543275, 0.865822554, 0.50035131, -7.1483264e-06)) | |
| 1694 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1695 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.400000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1696 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034964, 0.406014681, -0.349879265, -6.19999992e-05, 9.30000024e-05, -1, 0.499648243, 0.866228402, 4.95810527e-05, 0.866228402, -0.499648243, -0.000100173456)) | |
| 1697 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1698 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.400000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1699 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034964, 0.406010628, 0.349885464, -6.19999992e-05, 9.30000024e-05, -1, -0.50035131, 0.865822554, 0.000111543275, 0.865822554, 0.50035131, -7.1483264e-06)) | |
| 1700 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1701 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.400000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1702 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034726, 0.696532249, 0.0600090027, -6.19999992e-05, 9.30000024e-05, -1, 0.866228402, -0.499648243, -0.000100173456, -0.499648243, -0.866228402, -4.95810527e-05)) | |
| 1703 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1704 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.400000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1705 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034785, 0.139991283, 0.496533394, -6.19999992e-05, 9.30000024e-05, -1, 0.499648243, 0.866228402, 4.95810527e-05, 0.866228402, -0.499648243, -0.000100173456)) | |
| 1706 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1707 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.400000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1708 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400035143, -0.696525097, 0.0600137711, -6.19999992e-05, 9.30000024e-05, -1, 0.865822554, 0.50035131, -7.14832322e-06, 0.50035131, -0.865822554, -0.000111543275)) | |
| 1709 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1710 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Pastel violet",Enum.Material.SmoothPlastic,0,0) | |
| 1711 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034606, 0.499763012, -0.499995232, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1712 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1713 | nnn=parts(m,"nnn",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.Neon,0,0) | |
| 1714 | nnnWeld=welds(nnn,"nnnWeld",Torso,nnn,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034726, 0.49976325, 0.500008583, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1715 | meshs(nnn,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1716 | nnn=parts(m,"nnn",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.Neon,0,0) | |
| 1717 | nnnWeld=welds(nnn,"nnnWeld",Torso,nnn,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034726, 0.49976325, 0.500008583, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1718 | meshs(nnn,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1719 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Alder",Enum.Material.Neon,0,0) | |
| 1720 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034606, 0.499763012, -0.499995232, -6.21116924e-05, 9.29914822e-05, -1, -0.000406225823, 0.99999994, 9.3016708e-05, 0.99999994, 0.000406231615, -6.20739083e-05)) | |
| 1721 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 8, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1722 | nnn=parts(m,"nnn",Vector3.new(0.200000003, 0.300000012, 0.200000018),"Really black",Enum.Material.Neon,0,0) | |
| 1723 | nnnWeld=welds(nnn,"nnnWeld",Torso,nnn,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400034189, 0.446658134, -0.334376335, -6.19999992e-05, 9.30000024e-05, -1, 0.96582073, 0.259210944, -3.57742647e-05, 0.259210944, -0.96582073, -0.000105892417)) | |
| 1724 | meshs(nnn,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1725 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.349999994, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1726 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.40007019, 0.222240448, 0.301210403, -6.27423869e-05, 9.30537863e-05, -1, -0.259211421, 0.965820611, 0.000106136926, 0.965820611, 0.259211421, -3.64771113e-05)) | |
| 1727 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1728 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.349999994, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1729 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400072098, 0.217954159, -0.297916412, -6.17423793e-05, 9.30537863e-05, -1, 0.258427262, 0.966030777, 7.39369425e-05, 0.966030777, -0.258427233, -8.36927211e-05)) | |
| 1730 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1731 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Institutional white",Enum.Material.Neon,0,0) | |
| 1732 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400033951, 0.0497627258, -0.300001144, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1733 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1734 | Miss=parts(m,"Miss",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.Neon,0,0) | |
| 1735 | MissWeld=welds(Miss,"MissWeld",Torso,Miss,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400033951, 0.0497627258, -0.300001144, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1736 | meshs(Miss,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1737 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.400000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1738 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.40014267, -0.527124405, 0.30680275, -5.67423413e-05, 9.60537873e-05, -1, -0.259211421, 0.965820611, 0.000107479136, 0.96582073, 0.259211451, -2.99046515e-05)) | |
| 1739 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1740 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.400000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1741 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400140762, -0.531570673, -0.304092407, -5.87423565e-05, 9.10537856e-05, -1, 0.258427262, 0.966030777, 7.27801525e-05, 0.966030777, -0.258427203, -8.02776776e-05)) | |
| 1742 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1743 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Mint",Enum.Material.SmoothPlastic,0,0) | |
| 1744 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400032043, 0.0497632027, 0.299993515, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1745 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1746 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Pastel green",Enum.Material.Neon,0,0) | |
| 1747 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400032043, 0.0497632027, 0.299993515, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1748 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1749 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Dark stone grey",Enum.Material.SmoothPlastic,0,0) | |
| 1750 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400409698, -0.600310802, 0.479726791, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1751 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1752 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Really black",Enum.Material.Neon,0,0) | |
| 1753 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400409698, -0.600310802, 0.479726791, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1754 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1755 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Dark green",Enum.Material.Neon,0,0) | |
| 1756 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.401195526, -0.599538803, -0.480064392, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1757 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1758 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Lime green",Enum.Material.Neon,0,0) | |
| 1759 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400695801, -0.599538803, -0.480064392, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1760 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1761 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.75000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1762 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400064468, -0.158180237, 0.765592575, -6.17423793e-05, 9.30537863e-05, -1, -0.0875602439, 0.996159256, 9.8102566e-05, 0.996159256, 0.0875602439, -5.33575658e-05)) | |
| 1763 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1764 | Woos2=parts(m,"Woos2",Vector3.new(0.200000003, 0.75000006, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1765 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400068283, -0.16297102, -0.763105392, -6.17423793e-05, 9.30537863e-05, -1, 0.0867520422, 0.996230006, 8.73466925e-05, 0.996230006, -0.0867520422, -6.95820199e-05)) | |
| 1766 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1767 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"New Yeller",Enum.Material.Neon,0,0) | |
| 1768 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400630951, 0.350572824, -0.749675751, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1769 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1770 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Pastel yellow",Enum.Material.Neon,0,0) | |
| 1771 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400131226, 0.350572824, -0.749673843, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1772 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1773 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Royal purple",Enum.Material.Neon,0,0) | |
| 1774 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403272629, 0.349963665, 0.75031662, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1775 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1776 | Woos=parts(m,"Woos",Vector3.new(0.200000003, 0.200000003, 0.200000003),"Bright violet",Enum.Material.Neon,0,0) | |
| 1777 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.402772903, 0.349963665, 0.750318527, -6.21117651e-05, 9.2991475e-05, -1, -0.000406225823, 0.99999994, 9.30167153e-05, 0.99999994, 0.000406231615, -6.20738138e-05)) | |
| 1778 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1779 | Woos2=parts(m,"Woos2",Vector3.new(0.100000009, 0.249999985, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1780 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.450141907, -0.931800842, 0.172874451, -5.67423413e-05, 0.000102053789, -1, -0.965820491, -0.259211928, 2.83492263e-05, -0.259211928, 0.965820551, 0.000113273883)) | |
| 1781 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1782 | Woos2=parts(m,"Woos2",Vector3.new(0.100000009, 0.249999985, 0.200000018),"Institutional white",Enum.Material.Neon,0,0) | |
| 1783 | Woos2Weld=welds(Woos2,"Woos2Weld",Torso,Woos2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.951927185, 0.232198715, 0.55243206, -1, -0.000401930272, 5.67423413e-05, 0.000158875133, -0.258920103, 0.965898812, -0.000373532268, 0.965898752, 0.258920193)) | |
| 1784 | meshs(Woos2,"Mesh",Vector3.new(1.00300002, 1, 0.200000003),Enum.MeshType.Brick,"") | |
| 1785 | Woos=parts(m,"Woos",Vector3.new(0.363264769, 0.363264769, 0.363264769),"Lavender",Enum.Material.Neon,0,0) | |
| 1786 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.81990242, 0.422197342, -0.28178978, -0.999999881, 0.000546070165, -2.22575618e-05, 0.000533272687, 0.966030777, -0.258426368, -0.000119617092, -0.258426338, -0.966031015)) | |
| 1787 | meshs(Woos,"Mesh",Vector3.new(1.005, 1, 1),Enum.MeshType.Cylinder,"") | |
| 1788 | Woos=parts(m,"Woos",Vector3.new(0.363264769, 0.363264769, 0.363264769),"Magenta",Enum.Material.Neon,0,0) | |
| 1789 | WoosWeld=welds(Woos,"WoosWeld",Torso,Woos,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.820814133, 0.422197342, -0.281791687, -0.999999881, 0.000546070165, -2.22575618e-05, 0.000533272687, 0.966030777, -0.258426368, -0.000119617092, -0.258426338, -0.966031015)) | |
| 1790 | meshs(Woos,"Mesh",Vector3.new(1.00999999, 0.800000012, 0.800000012),Enum.MeshType.Cylinder,"") | |
| 1791 | ||
| 1792 | ||
| 1793 | Blush1=parts(m,"Blush1",Vector3.new(0.25, 0.200000003, 0.200000003),"Pink",Enum.Material.SmoothPlastic,0,0) | |
| 1794 | Blush1Weld=welds(Blush1,"Blush1Weld",Head,Blush1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.122557282, 0.0500011444, 0.524561882, 0.965925872, 7.76456909e-06, 0.258818984, -7.49999799e-06, 1, -2.00961767e-06, -0.258818984, 1.81900155e-12, 0.965925872)) | |
| 1795 | meshs(Blush1,"Mesh",Vector3.new(1.39999998, 0.639999986, 1),Enum.MeshType.Sphere,"") | |
| 1796 | Blush2=parts(m,"Blush2",Vector3.new(0.25, 0.200000003, 0.200000003),"Pink",Enum.Material.SmoothPlastic,0,0) | |
| 1797 | Blush2Weld=welds(Blush2,"Blush2Weld",Head,Blush2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.112898111, 0.0500011444, 0.521974087, 0.965925872, -7.76456909e-06, -0.258818984, 7.49999799e-06, 1, -2.00961767e-06, 0.258818984, 1.81897726e-12, 0.965925872)) | |
| 1798 | meshs(Blush2,"Mesh",Vector3.new(1.39999998, 0.639999986, 1),Enum.MeshType.Sphere,"") | |
| 1799 | ||
| 1800 | --more | |
| 1801 | swait() | |
| 1802 | for _,c in pairs(m:children()) do | |
| 1803 | if c:IsA("BasePart") then
| |
| 1804 | if c.Name~="RealMain" and c.Name~="SubMain" and c.Name~="Main" and c.Name~="Main2" and c.Name~="Main3" and c.Name~="Center1" and c.Name~="Center2" and c.Name~="Center3" and c.Name~="Center4" and c.Name~="Center5" and c.Name~="Center6" then --many | |
| 1805 | local welh=c:findFirstChildOfClass("Weld")
| |
| 1806 | if welh then | |
| 1807 | local hmm=create("ObjectValue"){ --screw stringvalue
| |
| 1808 | Name="hnng", | |
| 1809 | Value=welh.Part0, | |
| 1810 | Parent=c} | |
| 1811 | local hmm2=create("CFrameValue"){
| |
| 1812 | Name="hnng2", | |
| 1813 | Value=welh.C1, | |
| 1814 | Parent=c} | |
| 1815 | end | |
| 1816 | end | |
| 1817 | end | |
| 1818 | end | |
| 1819 | ||
| 1820 | ModeNameBill=create("BillboardGui"){
| |
| 1821 | Parent=Head, | |
| 1822 | Adornee=Head, | |
| 1823 | Size=UDim2.new(2,0,2,0), | |
| 1824 | AlwaysOnTop=true, | |
| 1825 | StudsOffset=Vector3.new(0,3,0), | |
| 1826 | LightInfluence=0 | |
| 1827 | } | |
| 1828 | ||
| 1829 | Frame1=create("Frame"){
| |
| 1830 | Name="MainFrame", | |
| 1831 | Parent=ModeNameBill, | |
| 1832 | BorderSizePixel=0, | |
| 1833 | AnchorPoint=Vector2.new(.5,.5), | |
| 1834 | Position=UDim2.new(.5,0,.5,0), | |
| 1835 | Size=UDim2.new(1,0,1,0), | |
| 1836 | Rotation=45, | |
| 1837 | ZIndex=3 | |
| 1838 | } | |
| 1839 | ||
| 1840 | Frame2=create("Frame"){
| |
| 1841 | Parent=ModeNameBill, | |
| 1842 | BorderSizePixel=0, | |
| 1843 | BackgroundTransparency=.5, | |
| 1844 | AnchorPoint=Vector2.new(.5,.5), | |
| 1845 | Position=UDim2.new(.5,0,.5,0), | |
| 1846 | Size=UDim2.new(1.2,0,1.2,0), | |
| 1847 | Rotation=45, | |
| 1848 | ZIndex=2 | |
| 1849 | } | |
| 1850 | ||
| 1851 | ModeText=create("TextLabel"){
| |
| 1852 | Parent=ModeNameBill, | |
| 1853 | BorderSizePixel=0, | |
| 1854 | BackgroundTransparency=1, | |
| 1855 | AnchorPoint=Vector2.new(.5,.5), | |
| 1856 | Position=UDim2.new(.5,0,.5,0), | |
| 1857 | Size=UDim2.new(3,0,.6,0), | |
| 1858 | ZIndex=4, | |
| 1859 | Font="Bodoni", | |
| 1860 | TextScaled=true, | |
| 1861 | TextStrokeTransparency=0 | |
| 1862 | } | |
| 1863 | ||
| 1864 | local a=0.1 | |
| 1865 | local b=0.5 | |
| 1866 | local c=false | |
| 1867 | for i=1,5 do | |
| 1868 | local VisFrame=create("Frame"){
| |
| 1869 | Name="Vis1"..i, | |
| 1870 | Parent=ModeNameBill, | |
| 1871 | BorderSizePixel=0, | |
| 1872 | BackgroundTransparency=0.5, | |
| 1873 | AnchorPoint=Vector2.new(1,.5), | |
| 1874 | Position=UDim2.new(0.01+b,0,a,0), | |
| 1875 | Size=UDim2.new(.4,0,.2,0), | |
| 1876 | ZIndex=1 | |
| 1877 | } | |
| 1878 | a=a+.2 | |
| 1879 | if b<=.1 then | |
| 1880 | c=true | |
| 1881 | end | |
| 1882 | if c==false then | |
| 1883 | b=b-.2 | |
| 1884 | else | |
| 1885 | b=b+.2 | |
| 1886 | end | |
| 1887 | end | |
| 1888 | ||
| 1889 | a=0.1 | |
| 1890 | b=0.5 | |
| 1891 | c=false | |
| 1892 | for i=1,5 do | |
| 1893 | local VisFrame=create("Frame"){
| |
| 1894 | Name="Vis2"..i, | |
| 1895 | Parent=ModeNameBill, | |
| 1896 | BorderSizePixel=0, | |
| 1897 | BackgroundTransparency=0.5, | |
| 1898 | AnchorPoint=Vector2.new(0,.5), | |
| 1899 | Position=UDim2.new(0.99-b,0,a,0), | |
| 1900 | Size=UDim2.new(.4,0,.2,0), | |
| 1901 | ZIndex=1 | |
| 1902 | } | |
| 1903 | a=a+.2 | |
| 1904 | if b<=.1 then | |
| 1905 | c=true | |
| 1906 | end | |
| 1907 | if c==false then | |
| 1908 | b=b-.2 | |
| 1909 | else | |
| 1910 | b=b+.2 | |
| 1911 | end | |
| 1912 | end | |
| 1913 | ||
| 1914 | MusicFrame=create("Frame"){
| |
| 1915 | Name="MusicFrame", | |
| 1916 | Parent=MainGui, | |
| 1917 | BackgroundTransparency=1, | |
| 1918 | AnchorPoint=Vector2.new(1,.5), | |
| 1919 | Position=UDim2.new(1.2,0,.92,0), | |
| 1920 | Size=UDim2.new(.3,0,.1,0), | |
| 1921 | ZIndex=2 | |
| 1922 | } | |
| 1923 | ||
| 1924 | Frame3=create("Frame"){
| |
| 1925 | Parent=MusicFrame, | |
| 1926 | BackgroundTransparency=0, | |
| 1927 | BorderSizePixel=0, | |
| 1928 | AnchorPoint=Vector2.new(1,.5), | |
| 1929 | Position=UDim2.new(1,0,.9,0), | |
| 1930 | Size=UDim2.new(1,0,.08,0), | |
| 1931 | ZIndex=2 | |
| 1932 | } | |
| 1933 | ||
| 1934 | Frame4=create("Frame"){
| |
| 1935 | Parent=MusicFrame, | |
| 1936 | BackgroundTransparency=0, | |
| 1937 | BorderSizePixel=0, | |
| 1938 | AnchorPoint=Vector2.new(0,1), | |
| 1939 | Position=UDim2.new(0,0,.9,0), | |
| 1940 | Size=UDim2.new(.01,0,1,0), | |
| 1941 | ZIndex=2 | |
| 1942 | } | |
| 1943 | ||
| 1944 | MusicText=create("TextLabel"){
| |
| 1945 | Parent=MusicFrame, | |
| 1946 | BorderSizePixel=0, | |
| 1947 | BackgroundTransparency=1, | |
| 1948 | AnchorPoint=Vector2.new(.5,.5), | |
| 1949 | Position=UDim2.new(.5,0,.4,0), | |
| 1950 | Size=UDim2.new(.98,0,.8,0), | |
| 1951 | ZIndex=2, | |
| 1952 | Font="Bodoni", | |
| 1953 | TextScaled=true, | |
| 1954 | TextStrokeTransparency=0, | |
| 1955 | TextXAlignment="Left" | |
| 1956 | } | |
| 1957 | ||
| 1958 | NoteLabel=create("ImageLabel"){
| |
| 1959 | Parent=MusicFrame, | |
| 1960 | BackgroundTransparency=1, | |
| 1961 | AnchorPoint=Vector2.new(.5,.5), | |
| 1962 | Position=UDim2.new(-.5,0,.5,0), | |
| 1963 | Size=UDim2.new(.2,0,1,0), | |
| 1964 | ZIndex=2, | |
| 1965 | Image="rbxassetid://614013894" | |
| 1966 | } | |
| 1967 | ||
| 1968 | NoteLabel2=create("ImageLabel"){
| |
| 1969 | Parent=MusicFrame, | |
| 1970 | BackgroundTransparency=1, | |
| 1971 | AnchorPoint=Vector2.new(.5,.5), | |
| 1972 | Position=UDim2.new(-.5,0,.5,0), | |
| 1973 | Size=UDim2.new(.2,0,1,0), | |
| 1974 | ZIndex=2, | |
| 1975 | Image="rbxassetid://614013894" | |
| 1976 | } | |
| 1977 | ||
| 1978 | local a=0 | |
| 1979 | for i=1,5 do | |
| 1980 | local VisFrame=create("Frame"){
| |
| 1981 | Name="Viss1"..i, | |
| 1982 | Parent=MusicFrame, | |
| 1983 | BorderSizePixel=0, | |
| 1984 | BackgroundTransparency=0.5, | |
| 1985 | AnchorPoint=Vector2.new(0,.5), | |
| 1986 | Position=UDim2.new(0,0,a,0), | |
| 1987 | Size=UDim2.new(.4,0,.2,0), | |
| 1988 | ZIndex=1 | |
| 1989 | } | |
| 1990 | a=a+.2 | |
| 1991 | end | |
| 1992 | ||
| 1993 | MusicIDFrame=create("Frame"){
| |
| 1994 | Name="MusicIDFrame", | |
| 1995 | Parent=MainGui, | |
| 1996 | BackgroundTransparency=1, | |
| 1997 | AnchorPoint=Vector2.new(.5,.5), | |
| 1998 | Position=UDim2.new(.5,0,1.2,0), | |
| 1999 | Size=UDim2.new(.3,0,.1,0), | |
| 2000 | ZIndex=7 | |
| 2001 | } | |
| 2002 | ||
| 2003 | Frame7=create("Frame"){
| |
| 2004 | Parent=MusicIDFrame, | |
| 2005 | BackgroundTransparency=0, | |
| 2006 | BorderSizePixel=0, | |
| 2007 | AnchorPoint=Vector2.new(1,.5), | |
| 2008 | Position=UDim2.new(1.01,0,.9,0), | |
| 2009 | Size=UDim2.new(1.01,0,.08,0), | |
| 2010 | ZIndex=8 | |
| 2011 | } | |
| 2012 | ||
| 2013 | Frame8=create("Frame"){
| |
| 2014 | Parent=MusicIDFrame, | |
| 2015 | BackgroundTransparency=0, | |
| 2016 | BorderSizePixel=0, | |
| 2017 | AnchorPoint=Vector2.new(0,1), | |
| 2018 | Position=UDim2.new(0,0,.9,0), | |
| 2019 | Size=UDim2.new(.01,0,1,0), | |
| 2020 | ZIndex=8 | |
| 2021 | } | |
| 2022 | ||
| 2023 | Frame9=create("Frame"){
| |
| 2024 | Parent=MusicIDFrame, | |
| 2025 | BackgroundTransparency=0, | |
| 2026 | BorderSizePixel=0, | |
| 2027 | AnchorPoint=Vector2.new(0,1), | |
| 2028 | Position=UDim2.new(1,0,.9,0), | |
| 2029 | Size=UDim2.new(.01,0,1,0), | |
| 2030 | ZIndex=8 | |
| 2031 | } | |
| 2032 | ||
| 2033 | Frame10=create("Frame"){
| |
| 2034 | Parent=MusicIDFrame, | |
| 2035 | BackgroundTransparency=.5, | |
| 2036 | BorderSizePixel=0, | |
| 2037 | AnchorPoint=Vector2.new(.5,0), | |
| 2038 | Position=UDim2.new(.5,0,-.1,0), | |
| 2039 | Size=UDim2.new(1,0,1,0), | |
| 2040 | ZIndex=2 | |
| 2041 | } | |
| 2042 | ||
| 2043 | MusicIDText=create("TextBox"){
| |
| 2044 | Parent=MusicIDFrame, | |
| 2045 | BorderSizePixel=0, | |
| 2046 | BackgroundTransparency=1, | |
| 2047 | AnchorPoint=Vector2.new(.5,.5), | |
| 2048 | Position=UDim2.new(.5,0,.4,0), | |
| 2049 | Size=UDim2.new(.98,0,.8,0), | |
| 2050 | ZIndex=9, | |
| 2051 | Font="Bodoni", | |
| 2052 | Text="Put Music ID here", | |
| 2053 | TextScaled=true, | |
| 2054 | TextStrokeTransparency=0 | |
| 2055 | } | |
| 2056 | ||
| 2057 | MusicPlay=create("TextButton"){
| |
| 2058 | Parent=MusicIDFrame, | |
| 2059 | BorderSizePixel=0, | |
| 2060 | BackgroundTransparency=1, | |
| 2061 | AnchorPoint=Vector2.new(.5,.5), | |
| 2062 | Position=UDim2.new(.5,0,1.1,0), | |
| 2063 | Size=UDim2.new(.2,0,.6,0), | |
| 2064 | ZIndex=9, | |
| 2065 | Font="Bodoni", | |
| 2066 | Text="Play", | |
| 2067 | TextScaled=true, | |
| 2068 | TextStrokeTransparency=0, | |
| 2069 | TextColor3=BrickColor.new("White").Color
| |
| 2070 | } | |
| 2071 | ||
| 2072 | MusicPlay.MouseButton1Click:connect(function() | |
| 2073 | local haah=MusicIDText.Text | |
| 2074 | theme.SoundId="rbxassetid://"..haah | |
| 2075 | theme.TimePosition=0 | |
| 2076 | theme:Play() | |
| 2077 | lastsong=haah | |
| 2078 | end) | |
| 2079 | ||
| 2080 | MP1=create("TextLabel"){
| |
| 2081 | Parent=MusicIDFrame, | |
| 2082 | BackgroundTransparency=1, | |
| 2083 | BorderSizePixel=0, | |
| 2084 | AnchorPoint=Vector2.new(0,1), | |
| 2085 | Position=UDim2.new(0,0,0,0), | |
| 2086 | Size=UDim2.new(.4,0,.6,0), | |
| 2087 | ZIndex=10, | |
| 2088 | Text="Music Power:", | |
| 2089 | TextColor3=BrickColor.new(modecolor[2]).Color, | |
| 2090 | Font="Bodoni", | |
| 2091 | TextScaled=true, | |
| 2092 | TextStrokeTransparency=0, | |
| 2093 | TextXAlignment="Left" | |
| 2094 | } | |
| 2095 | ||
| 2096 | MP2=create("TextLabel"){
| |
| 2097 | Parent=MP1, | |
| 2098 | BackgroundTransparency=1, | |
| 2099 | BorderSizePixel=0, | |
| 2100 | AnchorPoint=Vector2.new(0,.5), | |
| 2101 | Position=UDim2.new(1,0,.5,0), | |
| 2102 | Size=UDim2.new(1,0,1,0), | |
| 2103 | ZIndex=10, | |
| 2104 | Text="0", | |
| 2105 | TextColor3=BrickColor.new(modecolor[1]).Color, | |
| 2106 | Font="Bodoni", | |
| 2107 | TextScaled=true, | |
| 2108 | TextStrokeTransparency=0, | |
| 2109 | TextXAlignment="Left" | |
| 2110 | } | |
| 2111 | ||
| 2112 | HealthFrame=create("Frame"){
| |
| 2113 | Name="HealthFrame", | |
| 2114 | Parent=MainGui, | |
| 2115 | BackgroundTransparency=0, | |
| 2116 | BorderSizePixel=5, | |
| 2117 | AnchorPoint=Vector2.new(.5,.5), | |
| 2118 | Position=UDim2.new(.5,0,1.25,0), | |
| 2119 | Size=UDim2.new(.8,0,.06,0), | |
| 2120 | BackgroundColor3=BrickColor.new("Really black").Color,
| |
| 2121 | ZIndex=3 | |
| 2122 | } | |
| 2123 | ||
| 2124 | Health=create("Frame"){
| |
| 2125 | Name="Health", | |
| 2126 | Parent=HealthFrame, | |
| 2127 | BackgroundTransparency=0, | |
| 2128 | BorderSizePixel=0, | |
| 2129 | AnchorPoint=Vector2.new(0,.5), | |
| 2130 | Position=UDim2.new(0,0,.5,0), | |
| 2131 | Size=UDim2.new(0,0,1,0), | |
| 2132 | BackgroundColor3=BrickColor.new("Really red").Color,
| |
| 2133 | ZIndex=5 | |
| 2134 | } | |
| 2135 | ||
| 2136 | Health2=create("Frame"){
| |
| 2137 | Name="Health2", | |
| 2138 | Parent=HealthFrame, | |
| 2139 | BackgroundTransparency=0, | |
| 2140 | BorderSizePixel=0, | |
| 2141 | AnchorPoint=Vector2.new(0,.5), | |
| 2142 | Position=UDim2.new(0,0,.5,0), | |
| 2143 | Size=UDim2.new(0,0,1,0), | |
| 2144 | BackgroundColor3=BrickColor.new("Crimson").Color,
| |
| 2145 | ZIndex=4 | |
| 2146 | } | |
| 2147 | ||
| 2148 | HealthText=create("TextLabel"){
| |
| 2149 | Parent=HealthFrame, | |
| 2150 | BorderSizePixel=0, | |
| 2151 | BackgroundTransparency=1, | |
| 2152 | AnchorPoint=Vector2.new(0,.5), | |
| 2153 | Position=UDim2.new(0.001,0,.5,0), | |
| 2154 | Size=UDim2.new(1,0,1.1,0), | |
| 2155 | ZIndex=7, | |
| 2156 | Font="Bodoni", | |
| 2157 | TextScaled=true, | |
| 2158 | TextStrokeTransparency=0, | |
| 2159 | TextXAlignment="Left" | |
| 2160 | } | |
| 2161 | ||
| 2162 | local a=.2 | |
| 2163 | for i=1,4 do | |
| 2164 | Re=create("Frame"){
| |
| 2165 | Name="Modd", | |
| 2166 | Parent=HealthFrame, | |
| 2167 | BackgroundTransparency=0, | |
| 2168 | BorderSizePixel=0, | |
| 2169 | AnchorPoint=Vector2.new(0.5,.5), | |
| 2170 | Position=UDim2.new(a,0,.5,0), | |
| 2171 | Size=UDim2.new(.01,0,1,0), | |
| 2172 | BackgroundColor3=BrickColor.new("Really black").Color,
| |
| 2173 | ZIndex=6 | |
| 2174 | } | |
| 2175 | Re=create("Frame"){
| |
| 2176 | Name="Modd2", | |
| 2177 | Parent=HealthFrame, | |
| 2178 | BackgroundTransparency=0, | |
| 2179 | BorderSizePixel=0, | |
| 2180 | AnchorPoint=Vector2.new(0.5,.5), | |
| 2181 | Position=UDim2.new(a,0,.5,0), | |
| 2182 | Size=UDim2.new(.005,0,2,0), | |
| 2183 | BackgroundColor3=BrickColor.new("Really black").Color,
| |
| 2184 | ZIndex=7 | |
| 2185 | } | |
| 2186 | a=a+.2 | |
| 2187 | end | |
| 2188 | ||
| 2189 | ModeFrame=create("Frame"){
| |
| 2190 | Name="ModeFrame", | |
| 2191 | Parent=MainGui, | |
| 2192 | BackgroundTransparency=1, | |
| 2193 | AnchorPoint=Vector2.new(1,.5), | |
| 2194 | Position=UDim2.new(1.42,0,.7,0), | |
| 2195 | Size=UDim2.new(.3,0,.1,0), | |
| 2196 | ZIndex=2 | |
| 2197 | } | |
| 2198 | ||
| 2199 | ModeFrame2=create("Frame"){
| |
| 2200 | Name="ModeFrame2", | |
| 2201 | Parent=ModeFrame, | |
| 2202 | BackgroundTransparency=.5, | |
| 2203 | BorderSizePixel=0, | |
| 2204 | AnchorPoint=Vector2.new(.5,0), | |
| 2205 | Position=UDim2.new(.5,0,-.1,0), | |
| 2206 | Size=UDim2.new(1,0,1,0), | |
| 2207 | ZIndex=2 | |
| 2208 | } | |
| 2209 | ||
| 2210 | Frame5=create("Frame"){
| |
| 2211 | Parent=ModeFrame, | |
| 2212 | BackgroundTransparency=0, | |
| 2213 | BorderSizePixel=0, | |
| 2214 | AnchorPoint=Vector2.new(1,.5), | |
| 2215 | Position=UDim2.new(1,0,.9,0), | |
| 2216 | Size=UDim2.new(1,0,.08,0), | |
| 2217 | ZIndex=2 | |
| 2218 | } | |
| 2219 | ||
| 2220 | Frame6=create("Frame"){
| |
| 2221 | Parent=ModeFrame, | |
| 2222 | BackgroundTransparency=0, | |
| 2223 | BorderSizePixel=0, | |
| 2224 | AnchorPoint=Vector2.new(0,1), | |
| 2225 | Position=UDim2.new(0,0,.9,0), | |
| 2226 | Size=UDim2.new(.01,0,1,0), | |
| 2227 | ZIndex=2 | |
| 2228 | } | |
| 2229 | ||
| 2230 | ModeText2=create("TextLabel"){
| |
| 2231 | Parent=ModeFrame, | |
| 2232 | BorderSizePixel=0, | |
| 2233 | BackgroundTransparency=1, | |
| 2234 | AnchorPoint=Vector2.new(0,.5), | |
| 2235 | Position=UDim2.new(0.01,0,.4,0), | |
| 2236 | Size=UDim2.new(.35,0,.8,0), | |
| 2237 | ZIndex=2, | |
| 2238 | Text="Mode:", | |
| 2239 | Font="Bodoni", | |
| 2240 | TextScaled=true, | |
| 2241 | TextStrokeTransparency=0, | |
| 2242 | TextXAlignment="Left" | |
| 2243 | } | |
| 2244 | ||
| 2245 | ModeText3=create("TextLabel"){
| |
| 2246 | Parent=ModeText2, | |
| 2247 | BorderSizePixel=0, | |
| 2248 | BackgroundTransparency=1, | |
| 2249 | AnchorPoint=Vector2.new(0,.5), | |
| 2250 | Position=UDim2.new(.9,0,.5,0), | |
| 2251 | Size=UDim2.new(1.8,0,1,0), | |
| 2252 | ZIndex=2, | |
| 2253 | Text="asd", | |
| 2254 | Font="Bodoni", | |
| 2255 | TextScaled=true, | |
| 2256 | TextStrokeTransparency=0, | |
| 2257 | TextXAlignment="Left" | |
| 2258 | } | |
| 2259 | ||
| 2260 | asdFrame1=create("Frame"){
| |
| 2261 | Name="asdFrame", | |
| 2262 | Parent=MainGui, | |
| 2263 | BorderSizePixel=0, | |
| 2264 | AnchorPoint=Vector2.new(.5,.5), | |
| 2265 | Position=UDim2.new(0,0,1,0), | |
| 2266 | Size=UDim2.new(0,300,0,300), | |
| 2267 | BackgroundColor3=BrickColor.new("Really black").Color,
| |
| 2268 | BackgroundTransparency=.4, | |
| 2269 | ZIndex=3 | |
| 2270 | } | |
| 2271 | ||
| 2272 | asdFrame2=create("Frame"){
| |
| 2273 | Name="asdFrame2", | |
| 2274 | Parent=MainGui, | |
| 2275 | BorderSizePixel=0, | |
| 2276 | AnchorPoint=Vector2.new(.5,.5), | |
| 2277 | Position=UDim2.new(0,0,1,0), | |
| 2278 | Size=UDim2.new(0,450,0,450), | |
| 2279 | BackgroundColor3=BrickColor.new("Really black").Color,
| |
| 2280 | BackgroundTransparency=.7, | |
| 2281 | ZIndex=2 | |
| 2282 | } | |
| 2283 | ||
| 2284 | PageFrame=create("Frame"){
| |
| 2285 | Name="PageFrame", | |
| 2286 | Parent=MainGui, | |
| 2287 | BorderSizePixel=0, | |
| 2288 | BackgroundTransparency=1, | |
| 2289 | AnchorPoint=Vector2.new(1,.5), | |
| 2290 | Position=UDim2.new(1.605,0,.3,0), | |
| 2291 | Size=UDim2.new(.3,0,.5,0), | |
| 2292 | ZIndex=2 | |
| 2293 | } | |
| 2294 | ||
| 2295 | Frame11=create("Frame"){
| |
| 2296 | Parent=PageFrame, | |
| 2297 | BorderSizePixel=0, | |
| 2298 | BackgroundTransparency=0, | |
| 2299 | AnchorPoint=Vector2.new(0,1), | |
| 2300 | Position=UDim2.new(0,0,.9,0), | |
| 2301 | Size=UDim2.new(.01,0,1,0), | |
| 2302 | ZIndex=3 | |
| 2303 | } | |
| 2304 | ||
| 2305 | Frame12=create("Frame"){
| |
| 2306 | Parent=PageFrame, | |
| 2307 | BorderSizePixel=0, | |
| 2308 | BackgroundTransparency=0, | |
| 2309 | AnchorPoint=Vector2.new(0,.5), | |
| 2310 | Position=UDim2.new(0,0,.9,0), | |
| 2311 | Size=UDim2.new(1,0,.015,0), | |
| 2312 | ZIndex=3 | |
| 2313 | } | |
| 2314 | ||
| 2315 | PageFrame2=create("Frame"){
| |
| 2316 | Parent=PageFrame, | |
| 2317 | BorderSizePixel=0, | |
| 2318 | BackgroundTransparency=.5, | |
| 2319 | AnchorPoint=Vector2.new(.5,0), | |
| 2320 | Position=UDim2.new(.5,0,-.1,0), | |
| 2321 | Size=UDim2.new(1,0,1,0), | |
| 2322 | ZIndex=2 | |
| 2323 | } | |
| 2324 | ||
| 2325 | Pagge=create("TextLabel"){
| |
| 2326 | Parent=PageFrame, | |
| 2327 | BackgroundTransparency=1, | |
| 2328 | AnchorPoint=Vector2.new(0,.5), | |
| 2329 | Position=UDim2.new(.01,0,0,0), | |
| 2330 | Size=UDim2.new(1,0,.2,0), | |
| 2331 | ZIndex=3, | |
| 2332 | Font="Bodoni", | |
| 2333 | Text="[F] Page: 1/3", | |
| 2334 | TextScaled=true, | |
| 2335 | TextStrokeTransparency=0 | |
| 2336 | } | |
| 2337 | ||
| 2338 | HnS=create("TextLabel"){
| |
| 2339 | Parent=PageFrame, | |
| 2340 | BackgroundTransparency=1, | |
| 2341 | AnchorPoint=Vector2.new(1,.5), | |
| 2342 | Position=UDim2.new(-.02,0,0,0), | |
| 2343 | Size=UDim2.new(.5,0,.2,0), | |
| 2344 | ZIndex=3, | |
| 2345 | Font="Bodoni", | |
| 2346 | Text="[G] Show", | |
| 2347 | TextScaled=true, | |
| 2348 | TextStrokeTransparency=0 | |
| 2349 | } | |
| 2350 | ||
| 2351 | QQQ=create("TextLabel"){
| |
| 2352 | Parent=PageFrame, | |
| 2353 | BackgroundTransparency=1, | |
| 2354 | AnchorPoint=Vector2.new(0,.5), | |
| 2355 | Position=UDim2.new(.01,0,.2,0), | |
| 2356 | Size=UDim2.new(1,0,.1,0), | |
| 2357 | ZIndex=3, | |
| 2358 | Font="Bodoni", | |
| 2359 | Text="[Q] Rust", | |
| 2360 | TextScaled=true, | |
| 2361 | TextStrokeTransparency=0 | |
| 2362 | } | |
| 2363 | ||
| 2364 | EEE=create("TextLabel"){
| |
| 2365 | Parent=PageFrame, | |
| 2366 | BackgroundTransparency=1, | |
| 2367 | AnchorPoint=Vector2.new(0,.5), | |
| 2368 | Position=UDim2.new(.01,0,.3,0), | |
| 2369 | Size=UDim2.new(1,0,.1,0), | |
| 2370 | ZIndex=3, | |
| 2371 | Font="Bodoni", | |
| 2372 | Text="[E] Nova", | |
| 2373 | TextScaled=true, | |
| 2374 | TextStrokeTransparency=0 | |
| 2375 | } | |
| 2376 | ||
| 2377 | RRR=create("TextLabel"){
| |
| 2378 | Parent=PageFrame, | |
| 2379 | BackgroundTransparency=1, | |
| 2380 | AnchorPoint=Vector2.new(0,.5), | |
| 2381 | Position=UDim2.new(.01,0,.4,0), | |
| 2382 | Size=UDim2.new(1,0,.1,0), | |
| 2383 | ZIndex=3, | |
| 2384 | Font="Bodoni", | |
| 2385 | Text="[R] Celestial", | |
| 2386 | TextScaled=true, | |
| 2387 | TextStrokeTransparency=0 | |
| 2388 | } | |
| 2389 | ||
| 2390 | TTT=create("TextLabel"){
| |
| 2391 | Parent=PageFrame, | |
| 2392 | BackgroundTransparency=1, | |
| 2393 | AnchorPoint=Vector2.new(0,.5), | |
| 2394 | Position=UDim2.new(.01,0,.5,0), | |
| 2395 | Size=UDim2.new(1,0,.1,0), | |
| 2396 | ZIndex=3, | |
| 2397 | Font="Bodoni", | |
| 2398 | Text="[T] Glacier", | |
| 2399 | TextScaled=true, | |
| 2400 | TextStrokeTransparency=0 | |
| 2401 | } | |
| 2402 | ||
| 2403 | YYY=create("TextLabel"){
| |
| 2404 | Parent=PageFrame, | |
| 2405 | BackgroundTransparency=1, | |
| 2406 | AnchorPoint=Vector2.new(0,.5), | |
| 2407 | Position=UDim2.new(.01,0,.6,0), | |
| 2408 | Size=UDim2.new(1,0,.1,0), | |
| 2409 | ZIndex=3, | |
| 2410 | Font="Bodoni", | |
| 2411 | Text="[Y] Desperation", | |
| 2412 | TextScaled=true, | |
| 2413 | TextStrokeTransparency=0 | |
| 2414 | } | |
| 2415 | ||
| 2416 | UUU=create("TextLabel"){
| |
| 2417 | Parent=PageFrame, | |
| 2418 | BackgroundTransparency=1, | |
| 2419 | AnchorPoint=Vector2.new(0,.5), | |
| 2420 | Position=UDim2.new(.01,0,.7,0), | |
| 2421 | Size=UDim2.new(1,0,.1,0), | |
| 2422 | ZIndex=3, | |
| 2423 | Font="Bodoni", | |
| 2424 | Text="[U] Saint", | |
| 2425 | TextScaled=true, | |
| 2426 | TextStrokeTransparency=0 | |
| 2427 | } | |
| 2428 | ||
| 2429 | PPP=create("TextLabel"){
| |
| 2430 | Parent=PageFrame, | |
| 2431 | BackgroundTransparency=1, | |
| 2432 | AnchorPoint=Vector2.new(0,.5), | |
| 2433 | Position=UDim2.new(.01,0,.8,0), | |
| 2434 | Size=UDim2.new(1,0,.1,0), | |
| 2435 | ZIndex=3, | |
| 2436 | Font="Bodoni", | |
| 2437 | Text="", | |
| 2438 | TextScaled=true, | |
| 2439 | TextStrokeTransparency=0 | |
| 2440 | } | |
| 2441 | ||
| 2442 | HealthFrame:TweenPosition(UDim2.new(.5,0,.95,0), "Out", "Quart", 1.7,true) | |
| 2443 | ModeFrame:TweenPosition(UDim2.new(1.01,0,.7,0), "Out", "Quart", 1.7,true) | |
| 2444 | MusicFrame:TweenPosition(UDim2.new(1,0,.82,0), "Out", "Quart", 1.7,true) | |
| 2445 | PageFrame:TweenPosition(UDim2.new(1.305,0,.4,0), "Out", "Quart", 1.7,true) | |
| 2446 | ||
| 2447 | function FindNearestTorso(pos,distance) | |
| 2448 | local list=(workspace:children()) | |
| 2449 | local torso=nil | |
| 2450 | local dist=distance | |
| 2451 | local temp,human,temp2,temp3=nil,nil,nil,nil | |
| 2452 | for x=1,#list do | |
| 2453 | temp2=list[x] | |
| 2454 | if temp2.className=="Model"and temp2.Name~=chr.Name then | |
| 2455 | temp=temp2:findFirstChild("Torso")
| |
| 2456 | temp3=temp2:findFirstChild("UpperTorso")
| |
| 2457 | human=temp2:findFirstChildOfClass("Humanoid")
| |
| 2458 | if temp~=nil and human~=nil and human.Health>=0 and (temp.Position-pos).magnitude<dist then | |
| 2459 | local dohit=true | |
| 2460 | if dohit==true then | |
| 2461 | torso=temp | |
| 2462 | dist=(temp.Position-pos).magnitude | |
| 2463 | end | |
| 2464 | elseif temp3~=nil and human~=nil and human.Health>=0 and (temp3.Position-pos).magnitude<dist then | |
| 2465 | local dohit=true | |
| 2466 | if dohit==true then | |
| 2467 | torso=temp3 | |
| 2468 | dist=(temp3.Position-pos).magnitude | |
| 2469 | end | |
| 2470 | end | |
| 2471 | end | |
| 2472 | end | |
| 2473 | return torso,dist | |
| 2474 | end | |
| 2475 | ||
| 2476 | HitSound={
| |
| 2477 | "199149137", | |
| 2478 | "199149186", | |
| 2479 | "199149221", | |
| 2480 | "199149235", | |
| 2481 | "199149269", | |
| 2482 | "199149297", | |
| 2483 | } | |
| 2484 | ||
| 2485 | ||
| 2486 | function Damage(Type,Partzz,hit,dmg,delay,hs,hv,hp) | |
| 2487 | if hit.Parent==nil or hit.Parent:findFirstChild("AHit")~=nil then
| |
| 2488 | return | |
| 2489 | end | |
| 2490 | local h=hit.Parent:FindFirstChildOfClass("Humanoid")
| |
| 2491 | for _,v in pairs(hit.Parent:children()) do | |
| 2492 | if v:IsA("Humanoid")then
| |
| 2493 | h=v | |
| 2494 | end | |
| 2495 | end | |
| 2496 | ||
| 2497 | local subdmg | |
| 2498 | if h~=nil and hit.Parent.Name~=chr.Name then | |
| 2499 | if hit.Parent:findFirstChild("AHit")==nil then
| |
| 2500 | if mode=="Benevolence" then | |
| 2501 | h.Health=h.Health+dmg | |
| 2502 | elseif mode=="Amativeness" then | |
| 2503 | h.Health=h.Health+0 | |
| 2504 | elseif mode=="Psychosis" then | |
| 2505 | local a=math.random(1,100) | |
| 2506 | if a<=8 then | |
| 2507 | print'crit' | |
| 2508 | subdmg=math.random(70,80) | |
| 2509 | else | |
| 2510 | subdmg=math.random(5,10) | |
| 2511 | end | |
| 2512 | h.Health=h.Health-(dmg+subdmg) | |
| 2513 | elseif mode=="Minstrel" then | |
| 2514 | subdmg=math.floor(GetClientProperty(theme,'PlaybackLoudness')/8) | |
| 2515 | h.Health=h.Health-(dmg+subdmg) | |
| 2516 | elseif mode=="Exhaustion" then | |
| 2517 | h.Parent:BreakJoints() | |
| 2518 | else | |
| 2519 | ||
| 2520 | h.Health=h.Health-dmg | |
| 2521 | if h.Health==math.huge then | |
| 2522 | hit.Parent:BreakJoints() | |
| 2523 | end | |
| 2524 | ||
| 2525 | end | |
| 2526 | end | |
| 2527 | end | |
| 2528 | ||
| 2529 | if hit.Parent:findFirstChild("AHit")==nil then
| |
| 2530 | local c=create("BoolValue"){
| |
| 2531 | Name="AHit", | |
| 2532 | Value=true, | |
| 2533 | Parent=hit.Parent} | |
| 2534 | game:GetService("Debris"):AddItem(c,delay)
| |
| 2535 | if hs~=""and hit.Parent~=nil then | |
| 2536 | sounds(hit.Parent.Head,hs,hv,hp) | |
| 2537 | end | |
| 2538 | ||
| 2539 | local mama=math.random(1,100) | |
| 2540 | if mama<=15 then | |
| 2541 | if mode=="Rust" then | |
| 2542 | Disease(hit.Parent,hit) | |
| 2543 | elseif mode=="Glacier" then | |
| 2544 | Freeze(hit.Parent,hit) | |
| 2545 | elseif mode=="Conflagration" then | |
| 2546 | Burning(hit.Parent,hit) | |
| 2547 | elseif mode=="Lullaby" then | |
| 2548 | Sleep(hit.Parent,hit) | |
| 2549 | end | |
| 2550 | end | |
| 2551 | ||
| 2552 | local ref=parts(hit,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 2553 | ref.Anchored=true | |
| 2554 | ref.CFrame=CFrame.new(hit.Position+Vector3.new(math.random(-250,250)/100,math.random(-100,100)/100,math.random(-250,250)/100)) | |
| 2555 | game:GetService("Debris"):AddItem(ref,15)
| |
| 2556 | if dmg>.001 then | |
| 2557 | if mode=="Benevolence" then | |
| 2558 | damagegui(ref,"+"..dmg,.01) | |
| 2559 | elseif mode=="Amativeness" then | |
| 2560 | damagegui(ref,"0",.01) | |
| 2561 | elseif mode=="Psychosis" or mode=="Minstrel" then | |
| 2562 | damagegui(ref,"-"..dmg+subdmg,.01) | |
| 2563 | else | |
| 2564 | damagegui(ref,"-"..dmg,.01) | |
| 2565 | end | |
| 2566 | elseif dmg<-0 then | |
| 2567 | damagegui(ref,"+"..dmg,.01) | |
| 2568 | end | |
| 2569 | ||
| 2570 | if Type=="Disappear"then | |
| 2571 | Partzz.Parent=nil | |
| 2572 | ||
| 2573 | elseif Type=="Push"then | |
| 2574 | coroutine.resume(coroutine.create(function(hz) | |
| 2575 | local aaaaa=math.random(300,400) | |
| 2576 | for i=1,20 do | |
| 2577 | swait() | |
| 2578 | hz.Velocity=(Root.CFrame.lookVector*aaaaa)+(Root.CFrame.upVector*70) | |
| 2579 | h.PlatformStand=true | |
| 2580 | end | |
| 2581 | h.PlatformStand=false | |
| 2582 | end),hit) | |
| 2583 | elseif Type=="Push2"then | |
| 2584 | coroutine.resume(coroutine.create(function(hz) | |
| 2585 | local aaaaa=math.random(300,400) | |
| 2586 | h.Jump=true | |
| 2587 | hz.Velocity=Root.CFrame.upVector*440 | |
| 2588 | end),hit) | |
| 2589 | elseif Type=="None"then | |
| 2590 | ||
| 2591 | end | |
| 2592 | end | |
| 2593 | end | |
| 2594 | ||
| 2595 | ||
| 2596 | function damagegui(parz,text,dur) | |
| 2597 | local damag=create("BillboardGui"){
| |
| 2598 | Size=UDim2.new(2, 0, 2, 0), | |
| 2599 | Adornee=parz, | |
| 2600 | Parent=parz, | |
| 2601 | ExtentsOffset=Vector3.new(0, 3, 0), | |
| 2602 | AlwaysOnTop=true | |
| 2603 | } | |
| 2604 | local damagLabel=create("TextLabel"){
| |
| 2605 | AnchorPoint=Vector2.new(.5,.5), | |
| 2606 | BackgroundTransparency=1, | |
| 2607 | TextStrokeTransparency=0, | |
| 2608 | TextTransparency=0, | |
| 2609 | Position=UDim2.new(.5, 0, .5, 0), | |
| 2610 | Size=UDim2.new(6, 0, 1.5, 0), | |
| 2611 | Text=text, | |
| 2612 | Font="Bodoni", | |
| 2613 | TextScaled=true, | |
| 2614 | Parent=damag, | |
| 2615 | TextColor3=BrickColor.new(modecolor[2]).Color, | |
| 2616 | TextStrokeTransparency=0, | |
| 2617 | --TextStrokeColor3=BrickColor.new(modecolor[1]).Color, | |
| 2618 | ZIndex=3 | |
| 2619 | } | |
| 2620 | local rotat=math.random(-360,360) | |
| 2621 | local damagFrame1=create("Frame"){
| |
| 2622 | Name="damagFrame", | |
| 2623 | Parent=damag, | |
| 2624 | BorderSizePixel=0, | |
| 2625 | AnchorPoint=Vector2.new(.5,.5), | |
| 2626 | Position=UDim2.new(.5,0,.5,0), | |
| 2627 | Size=UDim2.new(2,0,2,0), | |
| 2628 | BackgroundColor3=BrickColor.new(modecolor[1]).Color, | |
| 2629 | Rotation=rotat, | |
| 2630 | ZIndex=2 | |
| 2631 | } | |
| 2632 | local damagFrame2=create("Frame"){
| |
| 2633 | Name="damagFrame", | |
| 2634 | Parent=damag, | |
| 2635 | BorderSizePixel=0, | |
| 2636 | AnchorPoint=Vector2.new(.5,.5), | |
| 2637 | Position=UDim2.new(.5,0,.5,0), | |
| 2638 | Size=UDim2.new(2.4,0,2.4,0), | |
| 2639 | BackgroundColor3=BrickColor.new(modecolor[2]).Color, | |
| 2640 | Rotation=rotat, | |
| 2641 | ZIndex=1 | |
| 2642 | } | |
| 2643 | local raise=.3 | |
| 2644 | coroutine.resume(coroutine.create(function(te) | |
| 2645 | for i=0,1.1,dur do | |
| 2646 | swait() | |
| 2647 | if raise>.01 then | |
| 2648 | raise=raise-.008 | |
| 2649 | elseif raise<=0 then | |
| 2650 | raise=0 | |
| 2651 | end | |
| 2652 | if mode=="Nil" then | |
| 2653 | damagLabel.TextColor3=BrickColor.new(nilcolor[math.random(1,#nilcolor)]).Color | |
| 2654 | damagLabel.TextStrokeColor3=BrickColor.new(nilcolor[math.random(1,#nilcolor)]).Color | |
| 2655 | local plusornot=math.random(1,2) | |
| 2656 | if plusornot==1 then | |
| 2657 | damagLabel.Text="-"..math.random(1,1000000) | |
| 2658 | else | |
| 2659 | damagLabel.Text="+"..math.random(1,1000000) | |
| 2660 | end | |
| 2661 | damagFrame1.Rotation=damagFrame1.Rotation+(raise*16+math.random(20,120)) | |
| 2662 | damagFrame2.Rotation=damagFrame2.Rotation+(raise*16+math.random(20,120)) | |
| 2663 | elseif mode=="Exhaustion" then | |
| 2664 | damagLabel.Text="Overkill!" | |
| 2665 | damagFrame1.Rotation=damagFrame1.Rotation+(raise*16+2) | |
| 2666 | damagFrame2.Rotation=damagFrame2.Rotation+(raise*16+2) | |
| 2667 | else | |
| 2668 | damagLabel.Text=text | |
| 2669 | damagFrame1.Rotation=damagFrame1.Rotation+(raise*16+2) | |
| 2670 | damagFrame2.Rotation=damagFrame2.Rotation+(raise*16+2) | |
| 2671 | end | |
| 2672 | damagFrame1.BackgroundTransparency=i | |
| 2673 | damagFrame2.BackgroundTransparency=.5+.5*i | |
| 2674 | damagLabel.TextTransparency=i | |
| 2675 | damagLabel.TextStrokeTransparency=.5+.5*i | |
| 2676 | te.Position=te.Position+Vector3.new(0,raise,0) | |
| 2677 | end | |
| 2678 | te:Remove() | |
| 2679 | end),parz) | |
| 2680 | end | |
| 2681 | ||
| 2682 | function Mdamage(Type,Partzz,Magn,Dmg,delay,hs,hv,hp) | |
| 2683 | coroutine.resume(coroutine.create(function() | |
| 2684 | if mode=="Exhaustion" then | |
| 2685 | gobom() | |
| 2686 | end | |
| 2687 | end)) | |
| 2688 | for _,c in pairs(workspace:children()) do | |
| 2689 | local hum=c:findFirstChildOfClass("Humanoid")
| |
| 2690 | if hum~=nil then | |
| 2691 | local ddee1=c:findFirstChild("Torso")
| |
| 2692 | local ddee2=c:findFirstChild("UpperTorso")
| |
| 2693 | if ddee1~=nil then | |
| 2694 | local targ=ddee1.Position-Partzz.Position | |
| 2695 | local mag=targ.magnitude | |
| 2696 | if mag<=Magn and c.Name~=plr.Name then | |
| 2697 | Damage(Type,Partzz,ddee1,Dmg,delay,hs,hv,hp) | |
| 2698 | end | |
| 2699 | elseif ddee2~=nil then | |
| 2700 | local targ=ddee2.Position-Partzz.Position | |
| 2701 | local mag=targ.magnitude | |
| 2702 | if mag<=Magn and c.Name~=plr.Name then | |
| 2703 | Damage(Type,Partzz,ddee2,Dmg,delay,hs,hv,hp) | |
| 2704 | end | |
| 2705 | end | |
| 2706 | end | |
| 2707 | end | |
| 2708 | end | |
| 2709 | ||
| 2710 | function gobom() | |
| 2711 | for _,c in pairs(game.Players:children()) do | |
| 2712 | if c:IsA("Player") and c.Name~=plr.Name then
| |
| 2713 | local char=c.Character | |
| 2714 | if char.Parent~=workspace then | |
| 2715 | char.Parent=workspace | |
| 2716 | swait() | |
| 2717 | local char1=char:findFirstChild("Torso")
| |
| 2718 | local char2=char:findFirstChild("UpperTorso")
| |
| 2719 | print(c.Name) | |
| 2720 | if char1 then | |
| 2721 | Mdamage("None",char1,3,math.random(6666,7777),0,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 2722 | elseif char2 then | |
| 2723 | Mdamage("None",char2,3,math.random(6666,7777),0,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 2724 | end | |
| 2725 | end | |
| 2726 | end | |
| 2727 | end | |
| 2728 | end | |
| 2729 | --v Status Effect | |
| 2730 | function Disease(chhr,tor) | |
| 2731 | if chhr:findFirstChild("RGSEDisease") then
| |
| 2732 | return | |
| 2733 | end | |
| 2734 | coroutine.resume(coroutine.create(function(r,r2) | |
| 2735 | local ref2=parts(tor,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 2736 | ref2.Anchored=true | |
| 2737 | ref2.CFrame=CFrame.new(r2.Position+Vector3.new(math.random(-250,250)/100,math.random(-100,100)/100,math.random(-250,250)/100)) | |
| 2738 | game:GetService("Debris"):AddItem(ref2,5)
| |
| 2739 | local asdf=create("StringValue"){
| |
| 2740 | Name="RGSEDisease", | |
| 2741 | Value="Diseased", | |
| 2742 | Parent=r} | |
| 2743 | local bb=20 | |
| 2744 | local aa=0 | |
| 2745 | damagegui(ref2,"Diseased!",.004) | |
| 2746 | repeat | |
| 2747 | swait() | |
| 2748 | aa=aa+1 | |
| 2749 | if aa>=14 then | |
| 2750 | aa=0 | |
| 2751 | bb=bb-1 | |
| 2752 | if r:findFirstChildOfClass("Humanoid") then
| |
| 2753 | local hu=r:findFirstChildOfClass("Humanoid")
| |
| 2754 | hu.Health=hu.Health-hu.MaxHealth/40 | |
| 2755 | end | |
| 2756 | end | |
| 2757 | ||
| 2758 | until bb<=0 or r.Parent==nil or asdf.Parent==nil | |
| 2759 | ||
| 2760 | end),chhr,tor) | |
| 2761 | end | |
| 2762 | ||
| 2763 | function Burning(chhr,tor) | |
| 2764 | if chhr:findFirstChild("RGSEBurning") then
| |
| 2765 | return | |
| 2766 | end | |
| 2767 | coroutine.resume(coroutine.create(function(r,r2) | |
| 2768 | local ref2=parts(tor,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 2769 | ref2.Anchored=true | |
| 2770 | ref2.CFrame=CFrame.new(r2.Position+Vector3.new(math.random(-250,250)/100,math.random(-100,100)/100,math.random(-250,250)/100)) | |
| 2771 | game:GetService("Debris"):AddItem(ref2,5)
| |
| 2772 | damagegui(ref2,"Burned!",.004) | |
| 2773 | local aaaa=create("Sound"){
| |
| 2774 | Parent=tor, | |
| 2775 | SoundId="rbxassetid://1601946639", | |
| 2776 | Volume=2, | |
| 2777 | PlaybackSpeed=1, | |
| 2778 | EmitterSize=20, | |
| 2779 | Name="burn baby burn", | |
| 2780 | Looped=true} | |
| 2781 | aaaa:Play() | |
| 2782 | local bb=20 | |
| 2783 | local ra=0 | |
| 2784 | local asdf=create("StringValue"){
| |
| 2785 | Name="RGSEBurning", | |
| 2786 | Value="Burning", | |
| 2787 | Parent=r} | |
| 2788 | repeat | |
| 2789 | swait() | |
| 2790 | local hum=r:findFirstChildOfClass("Humanoid")
| |
| 2791 | if hum then | |
| 2792 | ra=ra+1 | |
| 2793 | Effect(r2,"Br. yellowish orange",CFrame.new(r2.Position)*CFrame.new(math.random(-10,10)/6,math.random(-10,10)/6,math.random(-10,10)/6)*CFrame.Angles(-math.rad(90),0,math.random(-120,120)),8,8,8,-.4,-.4,-.4,.05,"Brick",7,5,"") | |
| 2794 | local raf=math.random(12,16) | |
| 2795 | if ra>=raf then | |
| 2796 | ra=0 | |
| 2797 | bb=bb-1 | |
| 2798 | local asdf=math.random(4,6) | |
| 2799 | hum.Health=hum.Health-asdf | |
| 2800 | --[[damagegui(ref,"-"..asdf,.01)]] --no | |
| 2801 | end | |
| 2802 | end | |
| 2803 | until bb<=0 or r.Parent==nil or asdf.Parent==nil | |
| 2804 | ||
| 2805 | aaaa:Remove() | |
| 2806 | asdf:Remove() | |
| 2807 | end),chhr,tor) | |
| 2808 | end | |
| 2809 | ||
| 2810 | function Freeze(chhr,tor) | |
| 2811 | if chhr:findFirstChild("RGSEFreezing") or tor.Anchored==true then
| |
| 2812 | return | |
| 2813 | end | |
| 2814 | coroutine.resume(coroutine.create(function(r,r2) | |
| 2815 | sounds(r2,"1139270836",2.5,.7) | |
| 2816 | local ref2=parts(tor,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 2817 | ref2.Anchored=true | |
| 2818 | ref2.CFrame=CFrame.new(r2.Position+Vector3.new(math.random(-250,250)/100,math.random(-100,100)/100,math.random(-250,250)/100)) | |
| 2819 | game:GetService("Debris"):AddItem(ref2,5)
| |
| 2820 | damagegui(ref2,"Frozen!",.004) | |
| 2821 | local bb=150 | |
| 2822 | local asdf=create("StringValue"){
| |
| 2823 | Name="RGSEFreezing", | |
| 2824 | Value="Freezing", | |
| 2825 | Parent=r} | |
| 2826 | local thaw=false | |
| 2827 | local freez=parts(tor,"ref",Vector3.new(.2,.2,.2),"Bright blue",Enum.Material.Glass,0,1) | |
| 2828 | freez.Anchored=true | |
| 2829 | freez.CFrame=tor.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)) | |
| 2830 | meshs(freez,"Mesh",Vector3.new(55,55,55),Enum.MeshType.Brick,"") | |
| 2831 | local lastwalkspeed | |
| 2832 | local lastjumppower | |
| 2833 | if r:findFirstChildOfClass("Humanoid") then
| |
| 2834 | lastwalkspeed=r:findFirstChildOfClass("Humanoid").WalkSpeed
| |
| 2835 | lastjumppower=r:findFirstChildOfClass("Humanoid").JumpPower
| |
| 2836 | end | |
| 2837 | coroutine.resume(coroutine.create(function(e) | |
| 2838 | for si=1,.4,-.01 do | |
| 2839 | swait() | |
| 2840 | freez.Transparency=si | |
| 2841 | end | |
| 2842 | repeat | |
| 2843 | swait() | |
| 2844 | until thaw==true | |
| 2845 | freez.Anchored=false | |
| 2846 | freez.Velocity=Vector3.new(math.random(-1,1)*math.random(25,35),math.random(1,1)*math.random(25,35),math.random(-1,1)*math.random(25,35)) | |
| 2847 | end),freez) | |
| 2848 | for i=1,math.random(4,7) do | |
| 2849 | local freez=parts(tor,"ref",Vector3.new(.2,.2,.2),"Bright blue",Enum.Material.Glass,0,1) | |
| 2850 | freez.Anchored=true | |
| 2851 | freez.CFrame=tor.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120))*CFrame.new(0,math.random(-6,6),0) | |
| 2852 | local randomm=math.random(15,30) | |
| 2853 | meshs(freez,"Mesh",Vector3.new(randomm,randomm,randomm),Enum.MeshType.Brick,"") | |
| 2854 | coroutine.resume(coroutine.create(function(e) | |
| 2855 | for si=1,.4,-.01 do | |
| 2856 | swait() | |
| 2857 | freez.Transparency=si | |
| 2858 | end | |
| 2859 | repeat | |
| 2860 | swait() | |
| 2861 | until thaw==true | |
| 2862 | freez.Anchored=false | |
| 2863 | freez.Velocity=Vector3.new(math.random(-1,1)*math.random(25,35),math.random(1,1)*math.random(25,35),math.random(-1,1)*math.random(25,35)) | |
| 2864 | end),freez) | |
| 2865 | ||
| 2866 | end | |
| 2867 | repeat | |
| 2868 | swait() | |
| 2869 | bb=bb-1 | |
| 2870 | if r:findFirstChildOfClass("Humanoid") then
| |
| 2871 | r:findFirstChildOfClass("Humanoid").WalkSpeed=0
| |
| 2872 | r:findFirstChildOfClass("Humanoid").JumpPower=0
| |
| 2873 | end | |
| 2874 | for _,c in pairs(r:children()) do | |
| 2875 | if c:IsA("BasePart") then
| |
| 2876 | c.Anchored=true | |
| 2877 | elseif c:IsA("Accessory") or c:IsA("Hat") then
| |
| 2878 | if c:findFirstChild("Handle") then
| |
| 2879 | c.Handle.Anchored=true | |
| 2880 | end | |
| 2881 | elseif c:IsA("Model") then
| |
| 2882 | for _,s in pairs(c:children()) do | |
| 2883 | if c:IsA("BasePart") then
| |
| 2884 | c.Anchored=true | |
| 2885 | end | |
| 2886 | end | |
| 2887 | end | |
| 2888 | end | |
| 2889 | until bb<=0 or r.Parent==nil or asdf.Parent==nil | |
| 2890 | thaw=true | |
| 2891 | sounds(r2,"138122923",2.5,1.3) | |
| 2892 | if r:findFirstChildOfClass("Humanoid") then
| |
| 2893 | r:findFirstChildOfClass("Humanoid").WalkSpeed=lastwalkspeed
| |
| 2894 | r:findFirstChildOfClass("Humanoid").JumpPower=lastjumppower
| |
| 2895 | end | |
| 2896 | for _,c in pairs(r:children()) do | |
| 2897 | if c:IsA("BasePart") then
| |
| 2898 | c.Anchored=false | |
| 2899 | elseif c:IsA("Accessory") or c:IsA("Hat") then
| |
| 2900 | if c:findFirstChild("Handle") then
| |
| 2901 | c.Handle.Anchored=false | |
| 2902 | end | |
| 2903 | elseif c:IsA("Model") then
| |
| 2904 | for _,s in pairs(c:children()) do | |
| 2905 | if c:IsA("BasePart") then
| |
| 2906 | c.Anchored=false | |
| 2907 | end | |
| 2908 | end | |
| 2909 | end | |
| 2910 | end | |
| 2911 | asdf:Remove() | |
| 2912 | end),chhr,tor) | |
| 2913 | end | |
| 2914 | ||
| 2915 | function Sleep(chhr,tor) | |
| 2916 | if chhr:findFirstChild("RGSESleeping") then
| |
| 2917 | return | |
| 2918 | end | |
| 2919 | local bb=400 | |
| 2920 | local deel=0 | |
| 2921 | coroutine.resume(coroutine.create(function(r,r2) | |
| 2922 | local ref2=parts(tor,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 2923 | ref2.Anchored=true | |
| 2924 | ref2.CFrame=CFrame.new(r2.Position+Vector3.new(math.random(-250,250)/100,math.random(-100,100)/100,math.random(-250,250)/100)) | |
| 2925 | game:GetService("Debris"):AddItem(ref2,5)
| |
| 2926 | damagegui(ref2,"Sleeping...",.004) | |
| 2927 | local asdf=create("StringValue"){
| |
| 2928 | Name="RGSESleeping", | |
| 2929 | Value="Sleeping", | |
| 2930 | Parent=r} | |
| 2931 | repeat | |
| 2932 | swait() | |
| 2933 | bb=bb-1 | |
| 2934 | deel=deel+1 | |
| 2935 | if deel>=23 then | |
| 2936 | deel=0 | |
| 2937 | local r3=chhr:findFirstChild("Head")
| |
| 2938 | if r3 then | |
| 2939 | Effect(r3,"Navy blue",CFrame.new(r3.Position+Vector3.new(0,2,0))*CFrame.Angles(-math.rad(90),0,0),.4,.4,.4,-.008,-.008,-.008,.03,"FileMesh",3,.05,"935034078") | |
| 2940 | end | |
| 2941 | end | |
| 2942 | if r:findFirstChildOfClass("Humanoid") then
| |
| 2943 | r:findFirstChildOfClass("Humanoid").PlatformStand=true
| |
| 2944 | end | |
| 2945 | until bb<=0 or r.Parent==nil or asdf.Parent==nil | |
| 2946 | if r:findFirstChildOfClass("Humanoid") then
| |
| 2947 | r:findFirstChildOfClass("Humanoid").PlatformStand=false
| |
| 2948 | end | |
| 2949 | asdf:Remove() | |
| 2950 | end),chhr,tor) | |
| 2951 | end | |
| 2952 | ||
| 2953 | function Blind(chhr,tor) | |
| 2954 | coroutine.resume(coroutine.create(function(r,r2) | |
| 2955 | ||
| 2956 | end),chhr,tor) | |
| 2957 | end | |
| 2958 | ||
| 2959 | function Bless(chhr,tor) | |
| 2960 | if chhr:findFirstChild("RGSEHealing") then
| |
| 2961 | return | |
| 2962 | end | |
| 2963 | local heel=20 | |
| 2964 | local laaaa=0 | |
| 2965 | local hehe=0 | |
| 2966 | coroutine.resume(coroutine.create(function(r,r2) | |
| 2967 | sounds(r2,"234226639",2.5,1.1) | |
| 2968 | local ref2=parts(tor,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 2969 | ref2.Anchored=true | |
| 2970 | ref2.CFrame=CFrame.new(r2.Position+Vector3.new(math.random(-250,250)/100,math.random(-100,100)/100,math.random(-250,250)/100)) | |
| 2971 | game:GetService("Debris"):AddItem(ref2,5)
| |
| 2972 | damagegui(ref2,"Blessed!",.004) | |
| 2973 | local asdf=create("StringValue"){
| |
| 2974 | Name="RGSEHealing", | |
| 2975 | Value="Healing", | |
| 2976 | Parent=r} | |
| 2977 | repeat | |
| 2978 | swait() | |
| 2979 | laaaa=laaaa+1 | |
| 2980 | if laaaa>=4 then | |
| 2981 | laaaa=0 | |
| 2982 | local r3=chhr:findFirstChild("Head")
| |
| 2983 | if r3 then | |
| 2984 | Effect(r2,"Cool yellow",CFrame.new(r3.Position)*CFrame.new(0,2,0)*CFrame.Angles(math.rad(90),0,0),2,2,2,.1,.1,-.1,.08,"FileMesh",6,0,"3270017") | |
| 2985 | end | |
| 2986 | end | |
| 2987 | hehe=hehe+1 | |
| 2988 | if hehe>=9 then | |
| 2989 | hehe=0 | |
| 2990 | local homan=chhr:findFirstChildOfClass("Humanoid")
| |
| 2991 | if homan then | |
| 2992 | if homan.Health<homan.MaxHealth then | |
| 2993 | heel=heel-1 | |
| 2994 | if r:findFirstChildOfClass("Humanoid") then
| |
| 2995 | local hu=r:findFirstChildOfClass("Humanoid")
| |
| 2996 | local wat=hu.Health+hu.MaxHealth/10 | |
| 2997 | local aaa=hu.Health | |
| 2998 | hu.Health=wat | |
| 2999 | local ref=parts(tor,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 3000 | ref.Anchored=true | |
| 3001 | ref.CFrame=CFrame.new(r2.Position+Vector3.new(math.random(-250,250)/100,math.random(-100,100)/100,math.random(-250,250)/100)) | |
| 3002 | damagegui(ref,"+"..math.floor(hu.Health-aaa),.01) | |
| 3003 | end | |
| 3004 | Effect(r2,"New Yeller",CFrame.new(r2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),2,2,2,2,2,2,.06,"Brick",1,0,"") | |
| 3005 | for i=1,6 do | |
| 3006 | Effect(r2,"New Yeller",CFrame.new(r2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),12,12,12,-.6,-.6,-.6,.05,"Sphere",3,math.random(27,40)/100,"") | |
| 3007 | end | |
| 3008 | sounds(r2,"969800663",2.3,1.2) | |
| 3009 | end | |
| 3010 | end | |
| 3011 | end | |
| 3012 | until heel<=0 or r.Parent==nil or asdf.Parent==nil | |
| 3013 | asdf:Remove() | |
| 3014 | end),chhr,tor) | |
| 3015 | end | |
| 3016 | ||
| 3017 | function MStatus(Type,Partzz,Magn) | |
| 3018 | for _,c in pairs(workspace:children()) do | |
| 3019 | local hum=c:findFirstChildOfClass("Humanoid")
| |
| 3020 | if hum~=nil then | |
| 3021 | local ddee1=c:findFirstChild("Torso")
| |
| 3022 | local ddee2=c:findFirstChild("UpperTorso")
| |
| 3023 | if ddee1~=nil and ddee2==nil then | |
| 3024 | local targ=ddee1.Position-Partzz.Position | |
| 3025 | local mag=targ.magnitude | |
| 3026 | if mag<=Magn and c.Name~=plr.Name then | |
| 3027 | if Type=="Disease" then | |
| 3028 | Disease(ddee1.Parent,ddee1) | |
| 3029 | elseif Type=="Freeze" then | |
| 3030 | Freeze(ddee1.Parent,ddee1) | |
| 3031 | elseif Type=="Burn" then | |
| 3032 | Burning(ddee1.Parent,ddee1) | |
| 3033 | elseif Type=="Sleep" then | |
| 3034 | Sleep(ddee1.Parent,ddee1) | |
| 3035 | elseif Type=="Blind" then | |
| 3036 | Blind(ddee1.Parent,ddee1) | |
| 3037 | elseif Type=="Bless" then | |
| 3038 | Bless(ddee1.Parent,ddee1) | |
| 3039 | end | |
| 3040 | end | |
| 3041 | elseif ddee1==nil and ddee2~=nil then | |
| 3042 | local targ=ddee2.Position-Partzz.Position | |
| 3043 | local mag=targ.magnitude | |
| 3044 | if mag<=Magn and c.Name~=plr.Name then | |
| 3045 | if Type=="Disease" then | |
| 3046 | Disease(ddee2.Parent,ddee2) | |
| 3047 | elseif Type=="Freeze" then | |
| 3048 | Freeze(ddee2.Parent,ddee2) | |
| 3049 | elseif Type=="Burn" then | |
| 3050 | Burning(ddee2.Parent,ddee2) | |
| 3051 | elseif Type=="Sleep" then | |
| 3052 | Sleep(ddee2.Parent,ddee2) | |
| 3053 | elseif Type=="Blind" then | |
| 3054 | Blind(ddee2.Parent,ddee2) | |
| 3055 | elseif Type=="Bless" then | |
| 3056 | Bless(ddee2.Parent,ddee2) | |
| 3057 | end | |
| 3058 | end | |
| 3059 | end | |
| 3060 | end | |
| 3061 | end | |
| 3062 | end | |
| 3063 | ||
| 3064 | --v efec | |
| 3065 | function Effect(par,color,CF,x,y,z,x1,y1,z1,de,mtyp,typ,rad,id,min,max,qu) | |
| 3066 | local ex=create("Part"){
| |
| 3067 | Size=Vector3.new(.2,.2,.2), | |
| 3068 | BrickColor=BrickColor.new(color), | |
| 3069 | CanCollide=false, | |
| 3070 | Material="Neon", | |
| 3071 | Anchored=true, | |
| 3072 | Parent=par, | |
| 3073 | Transparency=transp} | |
| 3074 | NoOutline(ex) | |
| 3075 | ex.CFrame=CF | |
| 3076 | local exe=create("SpecialMesh"){
| |
| 3077 | Scale=Vector3.new(x,y,z), | |
| 3078 | MeshType=mtyp, | |
| 3079 | Parent=ex} | |
| 3080 | if mtyp=="FileMesh"and id~=""then | |
| 3081 | exe.MeshId="rbxassetid://"..id | |
| 3082 | end | |
| 3083 | game:GetService("Debris"):AddItem(ex,10)
| |
| 3084 | local ez=ex.CFrame | |
| 3085 | local nu=0 | |
| 3086 | local no=math.random()-math.random() | |
| 3087 | coroutine.resume(coroutine.create(function() | |
| 3088 | for i=transp,1.01,de do | |
| 3089 | swait() | |
| 3090 | if mode=="Nil" then | |
| 3091 | ex.BrickColor=BrickColor.new(nilcolor[math.random(1,#nilcolor)]) | |
| 3092 | end | |
| 3093 | if typ~=5 then | |
| 3094 | ex.Transparency=i | |
| 3095 | end | |
| 3096 | exe.Scale=exe.Scale+Vector3.new(x1,y1,z1) | |
| 3097 | if typ==1 then | |
| 3098 | ex.CFrame=ex.CFrame*CFrame.Angles(math.random(-360,360),math.random(-360,360),math.random(-360,360)) | |
| 3099 | elseif typ==2 then | |
| 3100 | ex.CFrame=ex.CFrame*CFrame.Angles(0,math.rad(rad),0) | |
| 3101 | elseif typ==3 then | |
| 3102 | ex.CFrame=ex.CFrame*CFrame.new(0,0,rad) | |
| 3103 | elseif typ==4 then | |
| 3104 | nu=nu+no | |
| 3105 | ez=ez*CFrame.new(0,math.random(min,max)/qu,0) | |
| 3106 | ex.CFrame=ez*CFrame.Angles(nu,0,0) | |
| 3107 | --ex.CFrame=ex.CFrame | |
| 3108 | elseif typ==7 then | |
| 3109 | ex.CFrame=ez*CFrame.new(0,0,rad*i) | |
| 3110 | ex.CFrame=ex.CFrame*CFrame.Angles(math.random(-360,360),math.random(-360,360),math.random(-360,360)) | |
| 3111 | end | |
| 3112 | end | |
| 3113 | ex:Remove() | |
| 3114 | end)) | |
| 3115 | return ex --haha | |
| 3116 | end | |
| 3117 | ||
| 3118 | function Effect2(par,color,CF,x,y,z,x1,y1,z1,de,mtyp,rad,id) --t o o l a z y y hhh | |
| 3119 | local ex=create("Part"){
| |
| 3120 | Size=Vector3.new(.2,.2,.2), | |
| 3121 | BrickColor=BrickColor.new(color), | |
| 3122 | CanCollide=false, | |
| 3123 | Material="Neon", | |
| 3124 | Anchored=true, | |
| 3125 | Parent=par, | |
| 3126 | Transparency=transp} | |
| 3127 | NoOutline(ex) | |
| 3128 | ex.CFrame=CF | |
| 3129 | local exe=create("SpecialMesh"){
| |
| 3130 | Scale=Vector3.new(x,y,z), | |
| 3131 | MeshType=mtyp, | |
| 3132 | Parent=ex} | |
| 3133 | if mtyp=="FileMesh"and id~=""then | |
| 3134 | exe.MeshId="rbxassetid://"..id | |
| 3135 | end | |
| 3136 | game:GetService("Debris"):AddItem(ex,10)
| |
| 3137 | local ez=ex.CFrame | |
| 3138 | local nu=0 | |
| 3139 | local no=math.random()-math.random() | |
| 3140 | coroutine.resume(coroutine.create(function() | |
| 3141 | for i=transp,1.01,de do | |
| 3142 | swait() | |
| 3143 | if mode=="Nil" then | |
| 3144 | ex.BrickColor=BrickColor.new(nilcolor[math.random(1,#nilcolor)]) | |
| 3145 | end | |
| 3146 | exe.Scale=exe.Scale+Vector3.new(x1,y1,z1) | |
| 3147 | ex.CFrame=ex.CFrame*CFrame.new(0,rad,0) | |
| 3148 | ex.Transparency=i | |
| 3149 | end | |
| 3150 | ex:Remove() | |
| 3151 | end)) | |
| 3152 | return ex | |
| 3153 | end | |
| 3154 | ||
| 3155 | function REffect(par,color,CF,x,y,z,x1,y1,z1,de,mtyp,typ,rad,id) | |
| 3156 | local ex=create("Part"){
| |
| 3157 | Size=Vector3.new(.2,.2,.2), | |
| 3158 | BrickColor=BrickColor.new(color), | |
| 3159 | CanCollide=false, | |
| 3160 | Material="Neon", | |
| 3161 | Anchored=true, | |
| 3162 | CFrame=CF, | |
| 3163 | Parent=par, | |
| 3164 | Transparency=1} | |
| 3165 | NoOutline(ex) | |
| 3166 | local exe=create("SpecialMesh"){
| |
| 3167 | Scale=Vector3.new(x,y,z), | |
| 3168 | MeshType=mtyp, | |
| 3169 | Parent=ex} | |
| 3170 | if mtyp=="FileMesh"and id~=""then | |
| 3171 | exe.MeshId="rbxassetid://"..id | |
| 3172 | end | |
| 3173 | game:GetService("Debris"):AddItem(ex,10)
| |
| 3174 | local ez=ex.CFrame | |
| 3175 | local nu=0 | |
| 3176 | local no=math.random()-math.random() | |
| 3177 | coroutine.resume(coroutine.create(function() | |
| 3178 | for i=1,transp-.01,-de do | |
| 3179 | swait() | |
| 3180 | if mode=="Nil" then | |
| 3181 | ex.BrickColor=BrickColor.new(nilcolor[math.random(1,#nilcolor)]) | |
| 3182 | end | |
| 3183 | if typ~=5 then | |
| 3184 | ex.Transparency=i | |
| 3185 | end | |
| 3186 | exe.Scale=exe.Scale+Vector3.new(x1,y1,z1) | |
| 3187 | if typ==1 then | |
| 3188 | ex.CFrame=ex.CFrame*CFrame.Angles(math.random(-360,360),math.random(-360,360),math.random(-360,360)) | |
| 3189 | elseif typ==2 then | |
| 3190 | ex.CFrame=ex.CFrame*CFrame.Angles(0,math.rad(rad),0) | |
| 3191 | elseif typ==3 then | |
| 3192 | ex.CFrame=ex.CFrame*CFrame.new(0,0,rad) | |
| 3193 | elseif typ==4 then | |
| 3194 | nu=nu+no | |
| 3195 | ez=ez*CFrame.new(0,rad,0) | |
| 3196 | ex.CFrame=ez*CFrame.Angles(nu,0,0) | |
| 3197 | --ex.CFrame=ex.CFrame | |
| 3198 | end | |
| 3199 | end | |
| 3200 | ex:Remove() | |
| 3201 | end)) | |
| 3202 | return ex | |
| 3203 | end | |
| 3204 | ||
| 3205 | function LockEffect(par,color,CF,locke,x,y,z,x1,y1,z1,de,mtyp,typ,rad,id) | |
| 3206 | local ex=create("Part"){
| |
| 3207 | Size=Vector3.new(.2,.2,.2), | |
| 3208 | BrickColor=BrickColor.new(color), | |
| 3209 | CanCollide=false, | |
| 3210 | Material="Neon", | |
| 3211 | Anchored=true, | |
| 3212 | CFrame=CF, | |
| 3213 | Parent=par, | |
| 3214 | Transparency=transp} | |
| 3215 | NoOutline(ex) | |
| 3216 | local exe=create("SpecialMesh"){
| |
| 3217 | Scale=Vector3.new(x,y,z), | |
| 3218 | MeshType=mtyp, | |
| 3219 | Parent=ex} | |
| 3220 | if mtyp=="FileMesh"and id~=""then | |
| 3221 | exe.MeshId="rbxassetid://"..id | |
| 3222 | end | |
| 3223 | game:GetService("Debris"):AddItem(ex,10)
| |
| 3224 | local ez=ex.CFrame | |
| 3225 | local nu=0 | |
| 3226 | local no=math.random()-math.random() | |
| 3227 | coroutine.resume(coroutine.create(function() | |
| 3228 | for i=transp,1.01,de do | |
| 3229 | swait() | |
| 3230 | if mode=="Nil" then | |
| 3231 | ex.BrickColor=BrickColor.new(nilcolor[math.random(1,#nilcolor)]) | |
| 3232 | end | |
| 3233 | if typ~=5 then | |
| 3234 | ex.Transparency=i | |
| 3235 | end | |
| 3236 | exe.Scale=exe.Scale+Vector3.new(x1,y1,z1) | |
| 3237 | if typ==1 then | |
| 3238 | ex.CFrame=locke.CFrame*CFrame.Angles(math.random(-360,360),math.random(-360,360),math.random(-360,360)) | |
| 3239 | elseif typ==2 then | |
| 3240 | ex.CFrame=locke.CFrame*CFrame.Angles(0,math.rad(rad),0) | |
| 3241 | elseif typ==3 then | |
| 3242 | ex.CFrame=locke.CFrame*CFrame.new(0,0,rad) | |
| 3243 | elseif typ==4 then | |
| 3244 | nu=nu+no | |
| 3245 | locke=locke*CFrame.new(0,rad,0) | |
| 3246 | ex.CFrame=locke*CFrame.Angles(nu,0,0) | |
| 3247 | --ex.CFrame=ex.CFrame | |
| 3248 | else | |
| 3249 | ex.CFrame=locke.CFrame | |
| 3250 | end | |
| 3251 | end | |
| 3252 | ex:Remove() | |
| 3253 | end)) | |
| 3254 | return ex | |
| 3255 | end | |
| 3256 | ||
| 3257 | function RLockEffect(par,color,CF,locke,x,y,z,x1,y1,z1,de,mtyp,typ,rad,id) | |
| 3258 | local ex=create("Part"){
| |
| 3259 | Size=Vector3.new(.2,.2,.2), | |
| 3260 | BrickColor=BrickColor.new(color), | |
| 3261 | CanCollide=false, | |
| 3262 | Material="Neon", | |
| 3263 | Anchored=true, | |
| 3264 | CFrame=CF, | |
| 3265 | Parent=par, | |
| 3266 | Transparency=1} | |
| 3267 | NoOutline(ex) | |
| 3268 | local exe=create("SpecialMesh"){
| |
| 3269 | Scale=Vector3.new(x,y,z), | |
| 3270 | MeshType=mtyp, | |
| 3271 | Parent=ex} | |
| 3272 | if mtyp=="FileMesh"and id~=""then | |
| 3273 | exe.MeshId="rbxassetid://"..id | |
| 3274 | end | |
| 3275 | game:GetService("Debris"):AddItem(ex,10)
| |
| 3276 | local ez=ex.CFrame | |
| 3277 | local nu=0 | |
| 3278 | local no=math.random()-math.random() | |
| 3279 | coroutine.resume(coroutine.create(function() | |
| 3280 | for i=1,transp-.01,-de do | |
| 3281 | swait() | |
| 3282 | if mode=="Nil" then | |
| 3283 | ex.BrickColor=BrickColor.new(nilcolor[math.random(1,#nilcolor)]) | |
| 3284 | end | |
| 3285 | if typ~=5 then | |
| 3286 | ex.Transparency=i | |
| 3287 | end | |
| 3288 | exe.Scale=exe.Scale+Vector3.new(x1,y1,z1) | |
| 3289 | if typ==1 then | |
| 3290 | ex.CFrame=locke.CFrame*CFrame.Angles(math.random(-360,360),math.random(-360,360),math.random(-360,360)) | |
| 3291 | elseif typ==2 then | |
| 3292 | ex.CFrame=locke.CFrame*CFrame.Angles(0,math.rad(rad),0) | |
| 3293 | elseif typ==3 then | |
| 3294 | ex.CFrame=locke.CFrame*CFrame.new(0,0,rad) | |
| 3295 | elseif typ==4 then | |
| 3296 | nu=nu+no | |
| 3297 | locke=locke*CFrame.new(0,rad,0) | |
| 3298 | ex.CFrame=locke*CFrame.Angles(nu,0,0) | |
| 3299 | --ex.CFrame=ex.CFrame | |
| 3300 | else | |
| 3301 | ex.CFrame=locke.CFrame | |
| 3302 | end | |
| 3303 | end | |
| 3304 | ex:Remove() | |
| 3305 | end)) | |
| 3306 | return ex | |
| 3307 | end | |
| 3308 | --v other | |
| 3309 | function clone(wh,tr,asdf,deb) | |
| 3310 | local aaa=wh:Clone() | |
| 3311 | aaa.Parent=e | |
| 3312 | aaa:BreakJoints() | |
| 3313 | aaa.Color=BrickColor.new(modecolor[1]).Color | |
| 3314 | aaa.Material="Neon" | |
| 3315 | aaa.Transparency=tr | |
| 3316 | aaa.Anchored=true | |
| 3317 | aaa.CanCollide=false | |
| 3318 | if asdf==true then | |
| 3319 | aaa.Size=aaa.Size+Vector3.new(0.05,0.05,0.05) | |
| 3320 | end | |
| 3321 | game:GetService("Debris"):AddItem(aaa,5)
| |
| 3322 | for _,ff in pairs(aaa:children()) do | |
| 3323 | if ff:IsA("Sound")or ff:IsA("SpecialMesh")or ff:IsA("Decal")or ff:IsA("BillboardGui") then
| |
| 3324 | ff:Remove() | |
| 3325 | end | |
| 3326 | end | |
| 3327 | if aaa.Name=="Head" then | |
| 3328 | aaa.Size=Vector3.new(1,1,1) | |
| 3329 | elseif aaa.Name=="HumanoidRootPart"then | |
| 3330 | aaa.Transparency=1 | |
| 3331 | end | |
| 3332 | coroutine.resume(coroutine.create(function(cc) | |
| 3333 | for i=0,1,deb do | |
| 3334 | swait() | |
| 3335 | cc.Transparency=i | |
| 3336 | end | |
| 3337 | cc:Remove() | |
| 3338 | end),aaa) | |
| 3339 | end | |
| 3340 | ||
| 3341 | function modechangeframehhhhhhh(color1,color2) | |
| 3342 | local a1=create("Frame"){
| |
| 3343 | Parent=MainGui, | |
| 3344 | BorderSizePixel=0, | |
| 3345 | BackgroundTransparency=0, | |
| 3346 | BackgroundColor3=BrickColor.new(color1).Color, | |
| 3347 | AnchorPoint=Vector2.new(.5,.5), | |
| 3348 | Position=UDim2.new(.25,0,-.3,0), | |
| 3349 | Size=UDim2.new(.5,0,0,0), | |
| 3350 | ZIndex=50, | |
| 3351 | } | |
| 3352 | local a2=create("Frame"){
| |
| 3353 | Parent=MainGui, | |
| 3354 | BorderSizePixel=0, | |
| 3355 | BackgroundTransparency=.5, | |
| 3356 | BackgroundColor3=BrickColor.new(color2).Color, | |
| 3357 | AnchorPoint=Vector2.new(.5,.5), | |
| 3358 | Position=UDim2.new(.75,0,1.3,0), | |
| 3359 | Size=UDim2.new(.5,0,0,0), | |
| 3360 | ZIndex=51, | |
| 3361 | } | |
| 3362 | --[[local a3=create("Frame"){
| |
| 3363 | Parent=ModeNameBill, | |
| 3364 | BorderSizePixel=0, | |
| 3365 | BackgroundTransparency=0, | |
| 3366 | BackgroundColor3=BrickColor.new(color1).Color, | |
| 3367 | AnchorPoint=Vector2.new(.5,.5), | |
| 3368 | Position=UDim2.new(.5,0,.5,0), | |
| 3369 | Size=UDim2.new(.1,0,.1,0), | |
| 3370 | ZIndex=50, | |
| 3371 | Rotation=rotati | |
| 3372 | } | |
| 3373 | local a4=create("Frame"){
| |
| 3374 | Parent=ModeNameBill, | |
| 3375 | BorderSizePixel=0, | |
| 3376 | BackgroundTransparency=.5, | |
| 3377 | BackgroundColor3=BrickColor.new(color2).Color, | |
| 3378 | AnchorPoint=Vector2.new(.5,.5), | |
| 3379 | Position=UDim2.new(.5,0,.5,0), | |
| 3380 | Size=UDim2.new(.4,0,.4,0), | |
| 3381 | ZIndex=51, | |
| 3382 | Rotation=rotati | |
| 3383 | }]] | |
| 3384 | ||
| 3385 | local newbg=create("BillboardGui"){
| |
| 3386 | Parent=Torso, | |
| 3387 | LightInfluence=0, | |
| 3388 | Size=UDim2.new(3,0,3,0), | |
| 3389 | AlwaysOnTop=true | |
| 3390 | } | |
| 3391 | ||
| 3392 | local r1=create("ImageLabel"){
| |
| 3393 | Parent=newbg, | |
| 3394 | AnchorPoint=Vector2.new(.5,.5), | |
| 3395 | Size=UDim2.new(5,0,5,0), | |
| 3396 | Position=UDim2.new(.5,0,.5,0), | |
| 3397 | BackgroundTransparency=1, | |
| 3398 | Rotation=math.random(-360,360), | |
| 3399 | ImageColor3=BrickColor.new(color1).Color, | |
| 3400 | Image="rbxassetid://2306830484", | |
| 3401 | ZIndex=3 | |
| 3402 | } | |
| 3403 | ||
| 3404 | local r2=create("ImageLabel"){
| |
| 3405 | Parent=newbg, | |
| 3406 | AnchorPoint=Vector2.new(.5,.5), | |
| 3407 | Size=UDim2.new(5,0,5,0), | |
| 3408 | Position=UDim2.new(.5,0,.5,0), | |
| 3409 | BackgroundTransparency=1, | |
| 3410 | Rotation=math.random(-360,360), | |
| 3411 | ImageColor3=BrickColor.new(color2).Color, | |
| 3412 | Image="rbxassetid://2306830484", | |
| 3413 | ZIndex=3 | |
| 3414 | } | |
| 3415 | ||
| 3416 | local r3=create("ImageLabel"){
| |
| 3417 | Parent=newbg, | |
| 3418 | AnchorPoint=Vector2.new(.5,.5), | |
| 3419 | Size=UDim2.new(5,0,5,0), | |
| 3420 | Position=UDim2.new(.5,0,.5,0), | |
| 3421 | BackgroundTransparency=1, | |
| 3422 | Rotation=math.random(-360,360), | |
| 3423 | ImageColor3=BrickColor.new(color1).Color, | |
| 3424 | Image="rbxassetid://2245306240" | |
| 3425 | } | |
| 3426 | ||
| 3427 | --[[local lig1=particles(Torso,1.4,color1,"2301942083",.6,1,"Top",75,0,0,0,.6,1,123,123,7,44444,false,10) | |
| 3428 | lig1.Speed=NRn(32,44) | |
| 3429 | local lig2=particles(Torso,1.4,color2,"2301942083",.6,1,"Top",75,0,0,0,.6,1,123,123,7,44444,false,10) | |
| 3430 | lig2.Speed=NRn(52,64)]] | |
| 3431 | LockEffect(e,color2,CFrame.new(Torso.Position),Torso,7,7,7,16,16,16,.06,"Sphere",1,0,"") | |
| 3432 | if musicset=="Global" then | |
| 3433 | pssounds(chr,"750072465",2.3,3.9,.5,2) | |
| 3434 | else | |
| 3435 | pssounds(Torso,"750072465",2.3,3.9,.5,2) | |
| 3436 | end | |
| 3437 | ||
| 3438 | coroutine.resume(coroutine.create(function(bb1,bb2,bb3,bb4,bb5) | |
| 3439 | bb1:TweenSize(UDim2.new(.5,0,1.3,0), "Out", "Quart", .5,true) | |
| 3440 | bb2:TweenSize(UDim2.new(.5,0,1.3,0), "Out", "Quart", .5,true) | |
| 3441 | bb1:TweenPosition(UDim2.new(.25,0,.5,0), "Out", "Quart", .5,true) | |
| 3442 | bb2:TweenPosition(UDim2.new(.75,0,.5,0), "Out", "Quart", .5,true) | |
| 3443 | bb3:TweenSize(UDim2.new(60,0,60,0), "Out", "Back", .4,true) | |
| 3444 | bb4:TweenSize(UDim2.new(140,0,140,0), "Out", "Back", .61,true) | |
| 3445 | bb5:TweenSize(UDim2.new(280,0,280,0), "Out", "Sine", 1,true) | |
| 3446 | for i=0,1,.05 do | |
| 3447 | swait() | |
| 3448 | bb1.BackgroundTransparency=i | |
| 3449 | bb2.BackgroundTransparency=i | |
| 3450 | bb1.BackgroundColor3=BrickColor.new(color1).Color | |
| 3451 | bb2.BackgroundColor3=BrickColor.new(color2).Color | |
| 3452 | bb3.ImageTransparency=i | |
| 3453 | bb4.ImageTransparency=i | |
| 3454 | bb5.ImageTransparency=0+.5*i | |
| 3455 | bb3.Rotation=bb3.Rotation+1.2 | |
| 3456 | bb4.Rotation=bb4.Rotation-1.8 | |
| 3457 | bb3.ImageColor3=BrickColor.new(color1).Color | |
| 3458 | bb4.ImageColor3=BrickColor.new(color2).Color | |
| 3459 | bb5.Rotation=bb5.Rotation-3.3 | |
| 3460 | bb5.ImageColor3=BrickColor.new(color2).Color | |
| 3461 | --[[bb3.Rotation=bb1.Rotation+7 | |
| 3462 | bb4.Rotation=bb2.Rotation+7 | |
| 3463 | bb3.BackgroundTransparency=i | |
| 3464 | bb4.BackgroundTransparency=.5+.5*i | |
| 3465 | bb3.BackgroundColor3=BrickColor.new(color1).Color | |
| 3466 | bb4.BackgroundColor3=BrickColor.new(color2).Color | |
| 3467 | bb3.Size=UDim2.new(.1+7*i,0,.1+7*i,0) | |
| 3468 | bb4.Size=UDim2.new(.4+7*i,0,.4+7*i,0)]] | |
| 3469 | end | |
| 3470 | bb1:Remove() | |
| 3471 | bb2:Remove() | |
| 3472 | bb3:Remove() | |
| 3473 | bb4:Remove() | |
| 3474 | coroutine.resume(coroutine.create(function(as) | |
| 3475 | for i=.5,1.05,.03 do | |
| 3476 | swait() | |
| 3477 | as.ImageTransparency=i | |
| 3478 | as.Rotation=bb5.Rotation-3.3 | |
| 3479 | as.ImageColor3=BrickColor.new(color2).Color | |
| 3480 | end | |
| 3481 | bb5:Remove() | |
| 3482 | end),bb5) | |
| 3483 | --bb5:Remove() | |
| 3484 | end),a1,a2,r1,r2,r3)--a3,a4) | |
| 3485 | end | |
| 3486 | ||
| 3487 | function CameraShake(Intensity,par,mag,del) | |
| 3488 | ||
| 3489 | end | |
| 3490 | ||
| 3491 | function rusting(cf) | |
| 3492 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.CorrodedMetal,0,1) | |
| 3493 | ref.CFrame=cf | |
| 3494 | ref.Anchored=true | |
| 3495 | game:GetService("Debris"):AddItem(ref,.1)
| |
| 3496 | local hit,pos=rayCast(ref.Position,(CFrame.new(ref.Position,ref.Position-Vector3.new(0,1,0))).lookVector,10,chr) | |
| 3497 | if hit~=nil and hit.Parent:findFirstChildOfClass("Humanoid")==nil and hit.Parent.Parent:findFirstChildOfClass("Humanoid")==nil then
| |
| 3498 | --ref.CFrame=CFrame.new(pos) | |
| 3499 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.CorrodedMetal,0,transp) | |
| 3500 | meshs(ref2,"Mesh",Vector3.new(3,15,3),Enum.MeshType.Brick,"") | |
| 3501 | ref2.CFrame=CFrame.new(pos)*CFrame.Angles(math.rad(math.random(-30,30)),math.random(-120,120),math.rad(math.random(-30,30))) | |
| 3502 | ref2.CFrame=ref2.CFrame*CFrame.new(0,-math.random(30,40)/10,0) | |
| 3503 | ref2.Anchored=true | |
| 3504 | game:GetService("Debris"):AddItem(ref2,2)
| |
| 3505 | local ref3=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.CorrodedMetal,0,transp) | |
| 3506 | meshs(ref3,"Mesh",Vector3.new(3,6,3),Enum.MeshType.Wedge,"") | |
| 3507 | ref3.CFrame=ref2.CFrame*CFrame.new(0,2.1,0) | |
| 3508 | ref3.Anchored=true | |
| 3509 | game:GetService("Debris"):AddItem(ref3,2)
| |
| 3510 | local ref4=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.CorrodedMetal,0,transp) | |
| 3511 | meshs(ref4,"Mesh",Vector3.new(1,1,1),Enum.MeshType.Cylinder,"") | |
| 3512 | ref4.CFrame=CFrame.new(pos)*CFrame.Angles(0,0,math.rad(90)) | |
| 3513 | ref4.Anchored=true | |
| 3514 | game:GetService("Debris"):AddItem(ref4,2)
| |
| 3515 | coroutine.resume(coroutine.create(function(a1,a2,a3) | |
| 3516 | local la=a1.CFrame | |
| 3517 | local la2=a2.CFrame | |
| 3518 | for i=0,1,.08 do | |
| 3519 | swait() | |
| 3520 | a3:findFirstChild("Mesh").Scale=clerp(a3:findFirstChild("Mesh").Scale,Vector3.new(1,12,12),.2)
| |
| 3521 | a1.CFrame=clerp(a1.CFrame,la*CFrame.new(0,4,0),.2) | |
| 3522 | a2.CFrame=clerp(a2.CFrame,la2*CFrame.new(0,4,0),.2) | |
| 3523 | end | |
| 3524 | swait(40) | |
| 3525 | for i=transp,1.1,.05 do | |
| 3526 | swait() | |
| 3527 | a1.Transparency=i | |
| 3528 | a2.Transparency=i | |
| 3529 | a3.Transparency=i | |
| 3530 | end | |
| 3531 | end),ref2,ref3,ref4) | |
| 3532 | end | |
| 3533 | end | |
| 3534 | ||
| 3535 | function jadecrystal(cf) | |
| 3536 | local ran=CFrame.new(math.random(-30,30),0,math.random(-30,30)) | |
| 3537 | local jja=parts(e,"jjjj",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,.6,1) | |
| 3538 | jja.CFrame=cf*ran | |
| 3539 | jja.Anchored=true | |
| 3540 | local jj2=parts(e,"ree",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 3541 | jj2.CFrame=cf*ran | |
| 3542 | jj2.Anchored=true | |
| 3543 | meshs(jja,"Mesh",Vector3.new(.8, .8, .8),Enum.MeshType.FileMesh,"900090447") | |
| 3544 | local locat=ran | |
| 3545 | coroutine.resume(coroutine.create(function(j,j2) | |
| 3546 | local anotherrandom=math.random(4,12) | |
| 3547 | sounds(j,"1221376691",2.4,1.7) | |
| 3548 | local light=create("PointLight"){
| |
| 3549 | Parent=j, | |
| 3550 | Brightness=2, | |
| 3551 | Range=11, | |
| 3552 | Color=BrickColor.new(modecolor[1]).Color | |
| 3553 | } | |
| 3554 | repeat | |
| 3555 | swait() | |
| 3556 | j.Transparency=j.Transparency-.04 | |
| 3557 | j2.CFrame=clerp(j2.CFrame,CFrame.new(Root.Position)*locat*CFrame.new(0,anotherrandom,0),.3) | |
| 3558 | j.CFrame=clerp(j.CFrame,CFrame.new(j2.Position),.1) | |
| 3559 | until not chr:findFirstChild("RGSECasting")
| |
| 3560 | local aaaa=create("ObjectValue"){
| |
| 3561 | Name="ready", | |
| 3562 | Parent=j} | |
| 3563 | repeat | |
| 3564 | swait() | |
| 3565 | j.Transparency=j.Transparency-.04 | |
| 3566 | j.CFrame=clerp(j.CFrame,CFrame.new(j.Position,mouse.Hit.p)*CFrame.Angles(-math.rad(90),0,0),.3) | |
| 3567 | until aaaa.Parent~=j | |
| 3568 | j.Name="hhhh" | |
| 3569 | sounds(j,"1458854513",2.4,1) | |
| 3570 | local spreadvector=(Vector3.new(math.random(-8,8),math.random(-8,8),math.random(-8,8))/50)*(j.Position-mouse.Hit.p).magnitude/50 | |
| 3571 | local sa1=j.Position | |
| 3572 | local sa2=CFrame.new(sa1,mouse.Hit.p+spreadvector) | |
| 3573 | local cryz=particles(j,1,"Shamrock","1733262804",.7,1,"Top",1,1,0,1,1,1,55,55,7,44444,false) | |
| 3574 | cryz.Rate=33 | |
| 3575 | ||
| 3576 | for i=1,100 do | |
| 3577 | swait() | |
| 3578 | local hit,pos=rayCast(sa1,sa2.LookVector,8,chr) | |
| 3579 | --Effect(e,"Shamrock",CFrame.new(j.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),3,3,3,-.1,-.1,-.1,.08,"Brick",1,0,"") | |
| 3580 | j.Transparency=j.Transparency-.04 | |
| 3581 | j.CFrame=CFrame.new((sa1+pos)/2,pos)*CFrame.Angles(-math.rad(90),0,0) | |
| 3582 | j2.CFrame=CFrame.new(pos) | |
| 3583 | sa1=sa1+(sa2.LookVector*7) | |
| 3584 | if hit then | |
| 3585 | break | |
| 3586 | end | |
| 3587 | end | |
| 3588 | light.Enabled=false | |
| 3589 | cryz.Enabled=false | |
| 3590 | for i=1,math.random(2,4) do | |
| 3591 | Effect(e,"Forest green",CFrame.new(j.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),4,4,27,0,0,0,.04,"Sphere",4,math.random(-7,7),"",100,200,150) | |
| 3592 | end | |
| 3593 | Effect(e,"Forest green",CFrame.new(j.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),16,16,16,4.5,4.5,4.5,.06,"Brick",1,0,"") | |
| 3594 | Effect(e,"Shamrock",CFrame.new(j.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),16,16,16,3,3,3,.05,"Sphere",6,0,"") | |
| 3595 | sounds(j,"373951145",2.6,math.random(10,12)/10) | |
| 3596 | CameraShake(400,j,15,.15) | |
| 3597 | Mdamage("None",j,12,math.random(8,15),0,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3598 | j.Transparency=1 | |
| 3599 | game:GetService("Debris"):AddItem(j,2)
| |
| 3600 | game:GetService("Debris"):AddItem(j2,2)
| |
| 3601 | end),jja,jj2) | |
| 3602 | end | |
| 3603 | ||
| 3604 | --v atak | |
| 3605 | function Attack() | |
| 3606 | attack=true | |
| 3607 | if combo==1 then | |
| 3608 | combo=2 | |
| 3609 | CameraShake(300,Root,3,.12) | |
| 3610 | local cancel=false | |
| 3611 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,.4) | |
| 3612 | meshs(ref,"Mesh",Vector3.new(40,40,40),Enum.MeshType.Sphere,"") | |
| 3613 | ref.Anchored=true | |
| 3614 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 3615 | ref2.Anchored=true | |
| 3616 | ref.CFrame=RArm.CFrame*CFrame.new(0,-12,0) | |
| 3617 | ref2.CFrame=ref.CFrame*CFrame.new(0,-8,0) | |
| 3618 | coroutine.resume(coroutine.create(function(b,b2) | |
| 3619 | sounds(b,"750074147",2.3,1.4) | |
| 3620 | LockEffect(e,modecolor[2],b2.CFrame,b2,9,9,9,36,36,36,.09,"Sphere",6,0,"") | |
| 3621 | LockEffect(e,modecolor[1],b2.CFrame,b2,9,9,9,31,31,31,.07,"Sphere",6,0,"") | |
| 3622 | local pe1=particles(b,.5,modecolor[1],"262059101",.7,1,"Top",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3623 | local pe2=particles(b,.5,modecolor[1],"262059101",.7,1,"Bottom",4.5,.2,0,1,.45,.45,55,55,100,0,true) | |
| 3624 | local pe3=particles(b,.5,modecolor[1],"262059101",.7,1,"Front",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3625 | local pe4=particles(b,.5,modecolor[1],"262059101",.7,1,"Back",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3626 | local pe5=particles(b,.6,modecolor[2],"262059101",.4,1,"Back",8,.2,0,1,.45,.45,55,55,0,0,true) | |
| 3627 | while not cancel do | |
| 3628 | swait() | |
| 3629 | pe1.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3630 | pe2.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3631 | pe3.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3632 | pe4.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3633 | pe5.Color=CSn(BrickColor.new(modecolor[2]).Color) | |
| 3634 | b.CFrame=clerp(b.CFrame,RArm.CFrame*CFrame.new(0,-12,0),.55) | |
| 3635 | b2.CFrame=b.CFrame*CFrame.new(0,-8,0) | |
| 3636 | b.BrickColor=BrickColor.new(modecolor[2]) | |
| 3637 | --[[Effect(e,modecolor[1],b.CFrame*CFrame.Angles(math.rad(90),0,0),21,21,21,-1.8,-1.8,-1.8,.08,"Sphere",3,5,"") | |
| 3638 | Effect(e,modecolor[1],b.CFrame*CFrame.Angles(-math.rad(90),0,0),17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"") | |
| 3639 | Effect(e,modecolor[1],b.CFrame,17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"") | |
| 3640 | Effect(e,modecolor[1],b.CFrame*CFrame.Angles(math.rad(180),0,0),17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"")]] | |
| 3641 | Effect(e,modecolor[2],b.CFrame,12,12,12,-0.4,-0.4,-0.4,.03,"Brick",1,0,"") | |
| 3642 | end | |
| 3643 | sounds(b,"161006033",2.1,1.2) | |
| 3644 | REffect(e,modecolor[2],b2.CFrame,460,460,460,-36,-36,-36,.09,"Sphere",6,0,"") | |
| 3645 | REffect(e,modecolor[1],b2.CFrame,410,410,410,-31,-31,-31,.07,"Sphere",6,0,"") | |
| 3646 | pe1.Enabled=false | |
| 3647 | pe2.Enabled=false | |
| 3648 | pe3.Enabled=false | |
| 3649 | pe4.Enabled=false | |
| 3650 | pe5.Enabled=false | |
| 3651 | b.Transparency=1 | |
| 3652 | b2.Transparency=1 | |
| 3653 | game:GetService("Debris"):AddItem(b,2)
| |
| 3654 | game:GetService("Debris"):AddItem(b2,2)
| |
| 3655 | end),ref,ref2) | |
| 3656 | for i=0,1,0.06 do | |
| 3657 | swait() | |
| 3658 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3659 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3660 | RJ.C0=clerp(RJ.C0,CFrame.new(-5.12599945e-06, -1.01693225, -0.203422278, 0.701194763, 6.68711493e-07, -0.71296984, 0.290157467, 0.913441181, 0.285366267, 0.651256084, -0.406970859, 0.640500009)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3661 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.00760053098, 1.45502222, -0.00812442601, 0.732492089, 0.163771361, 0.660783052, -4.99841065e-07, 0.97063303, -0.240565345, -0.680775642, 0.176211864, 0.710981071)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3662 | RS.C0=clerp(RS.C0,CFrame.new(2.05742025, 0.638754964, 0.410474628, -0.200291321, -0.924229443, -0.325089633, 0.930500925, -0.0755840987, -0.358406514, 0.306678236, -0.374281883, 0.875135303)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3663 | LS.C0=clerp(LS.C0,CFrame.new(-1.70122385, 0.239943832, -0.461974204, 0.763479531, 0.515813708, -0.388632536, -0.601450384, 0.787094653, -0.13689214, 0.235279739, 0.338257492, 0.911167145)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3664 | RH.C0=clerp(RH.C0,CFrame.new(0.94743216, -1.88788819, 0.477237582, 0.912143111, -0.409871817, 4.47034836e-07, 0.318442494, 0.708674014, 0.629583657, -0.258048981, -0.574270308, 0.776932836)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3665 | LH.C0=clerp(LH.C0,CFrame.new(-0.97208941, -0.867058039, -0.445659131, 0.785103023, 0.0197627246, 0.619049788, -0.0551716276, 0.99774909, 0.0381183699, -0.616903067, -0.0640808642, 0.784426153)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3666 | end | |
| 3667 | CameraShake(200,Root,3,.07) | |
| 3668 | sounds(RArm,"231917950",3,1.3) | |
| 3669 | for i=0,1,0.24 do | |
| 3670 | swait() | |
| 3671 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3672 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3673 | RJ.C0=clerp(RJ.C0,CFrame.new(0.123909831, -0.750978827, 0.0982624367, 0.949407756, -0.168857202, -0.264787018, 0.224022537, 0.955037832, 0.194207907, 0.220088214, -0.243700758, 0.94454813)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3674 | Neck.C0=clerp(Neck.C0,CFrame.new(0.208708033, 1.4607476, -0.0615820736, 0.961567461, 0.183174327, 0.204536796, -0.161233678, 0.979671776, -0.11936076, -0.222242743, 0.0817952007, 0.971554279)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3675 | RS.C0=clerp(RS.C0,CFrame.new(1.75214458, 0.594285131, -0.758983314, -0.115871355, -0.644968987, 0.75537324, 0.991707385, -0.117686063, 0.0516388491, 0.0555914491, 0.75509268, 0.653257012)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3676 | LS.C0=clerp(LS.C0,CFrame.new(-1.86807501, 0.220122516, -0.152396977, 0.614466846, 0.732216418, -0.293750942, -0.695890248, 0.678447783, 0.235468626, 0.371708781, 0.0597307682, 0.926425934)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3677 | RH.C0=clerp(RH.C0,CFrame.new(0.482204288, -1.72916126, 0.916162252, 0.997946978, -0.0279439315, 0.0576281697, -0.0216138959, 0.700066626, 0.713750482, -0.0602885485, -0.71353066, 0.698025346)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3678 | LH.C0=clerp(LH.C0,CFrame.new(-0.724308729, -1.01147997, -0.723858297, 0.982275963, 0.0665762275, 0.175218523, -0.105431691, 0.969143093, 0.222814053, -0.154977679, -0.237338513, 0.958985209)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3679 | end | |
| 3680 | for i=0,1,0.07 do | |
| 3681 | swait() | |
| 3682 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3683 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3684 | RJ.C0=clerp(RJ.C0,CFrame.new(0.0284146219, -0.492904842, -0.276263297, 0.610390007, 0.0889461935, 0.787091315, -0.144217372, 0.98954612, 1.58694529e-05, -0.778861642, -0.113521926, 0.616836607)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3685 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.22212404, 1.36912525, 0.168616623, 0.963301718, -0.108563483, -0.245487422, 0.0415876657, 0.963879764, -0.263071358, 0.26518026, 0.243207783, 0.933021784)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3686 | RS.C0=clerp(RS.C0,CFrame.new(0.570004404, 0.616392195, -1.04143918, 0.205978185, 0.660211205, 0.722284079, 0.977427721, -0.174254686, -0.119459756, 0.0469926894, 0.730586529, -0.681201339)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3687 | LS.C0=clerp(LS.C0,CFrame.new(-1.75247312, 0.0388644934, 0.158572435, 0.873337388, 0.449551165, -0.187578529, -0.325705886, 0.825256944, 0.461374998, 0.362212092, -0.341840565, 0.867149115)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3688 | RH.C0=clerp(RH.C0,CFrame.new(0.858403623, -1.71307266, 0.00886255503, 0.604128659, -0.0354231931, -0.796099246, 0.0946186334, 0.995133162, 0.0275229849, 0.791249633, -0.0919532403, 0.604540169)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3689 | LH.C0=clerp(LH.C0,CFrame.new(-0.621038556, -1.91757524, -0.144981503, 0.898810744, -0.0383151248, -0.436659485, -0.00302137434, 0.995607316, -0.0935797319, 0.438326776, 0.0854297578, 0.894746721)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3690 | end | |
| 3691 | sounds(RArm,"231917950",3,1.5) | |
| 3692 | CameraShake(200,Root,3,.07) | |
| 3693 | for i=0,1,0.06 do | |
| 3694 | swait() | |
| 3695 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3696 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3697 | RJ.C0=clerp(RJ.C0,CFrame.new(0.0284143835, -0.492905647, -0.276266515, 0.860687554, 0.124722905, -0.493620396, -0.061251808, 0.987854302, 0.142800793, 0.505435586, -0.0926717147, 0.85787344)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3698 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0235384926, 1.47036386, 0.0155445822, 0.916527808, -0.027506724, 0.39902395, 0.0295535028, 0.99956274, 0.0010227561, -0.398877561, 0.010855183, 0.916939974)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3699 | RS.C0=clerp(RS.C0,CFrame.new(1.91629326, 0.628075719, -0.819169819, -0.0577421933, -0.701027155, 0.710793078, 0.998299897, -0.0348685086, 0.0467087775, -0.00795980543, 0.712281585, 0.701848745)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3700 | LS.C0=clerp(LS.C0,CFrame.new(-1.62597358, 0.0886717811, 0.0794808045, 0.931096077, 0.348853141, 0.106590807, -0.346170366, 0.937171102, -0.0433167405, -0.115004957, 0.00343348086, 0.993359029)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3701 | RH.C0=clerp(RH.C0,CFrame.new(0.847044945, -1.85409999, 0.062305253, 0.818898797, -0.246524319, 0.518295825, 0.104081631, 0.951865971, 0.288302183, -0.564421654, -0.182145223, 0.805140615)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3702 | LH.C0=clerp(LH.C0,CFrame.new(-0.752276421, -1.89672148, -0.23946017, 0.707620621, 0.0848988891, 0.701473653, 0.00852068514, 0.991657972, -0.128615037, -0.7065413, 0.096987702, 0.700994253)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3703 | end | |
| 3704 | cancel=true | |
| 3705 | elseif combo==2 then | |
| 3706 | combo=3 | |
| 3707 | CameraShake(300,Root,3,.12) | |
| 3708 | local cancel=false | |
| 3709 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,.4) | |
| 3710 | meshs(ref,"Mesh",Vector3.new(40,40,40),Enum.MeshType.Sphere,"") | |
| 3711 | ref.Anchored=true | |
| 3712 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 3713 | ref2.Anchored=true | |
| 3714 | local ref3=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 3715 | local ref3Weld=welds(ref3,"refWeld",RArm,ref3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 3716 | ref.CFrame=ref3.CFrame*CFrame.new(0,-12,0) | |
| 3717 | ref2.CFrame=ref.CFrame*CFrame.new(0,-8,0) | |
| 3718 | coroutine.resume(coroutine.create(function(b,b2) | |
| 3719 | sounds(b,"750074147",2.3,1.4) | |
| 3720 | LockEffect(e,modecolor[2],b2.CFrame,b2,9,9,9,36,36,36,.09,"Sphere",6,0,"") | |
| 3721 | LockEffect(e,modecolor[1],b2.CFrame,b2,9,9,9,31,31,31,.07,"Sphere",6,0,"") | |
| 3722 | local pe1=particles(b,.5,modecolor[1],"262059101",.7,1,"Top",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3723 | local pe2=particles(b,.5,modecolor[1],"262059101",.7,1,"Bottom",4.5,.2,0,1,.45,.45,55,55,100,0,true) | |
| 3724 | local pe3=particles(b,.5,modecolor[1],"262059101",.7,1,"Front",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3725 | local pe4=particles(b,.5,modecolor[1],"262059101",.7,1,"Back",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3726 | local pe5=particles(b,.6,modecolor[2],"262059101",.4,1,"Back",8,.2,0,1,.45,.45,55,55,0,0,true) | |
| 3727 | while not cancel do | |
| 3728 | swait() | |
| 3729 | pe1.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3730 | pe2.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3731 | pe3.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3732 | pe4.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3733 | pe5.Color=CSn(BrickColor.new(modecolor[2]).Color) | |
| 3734 | b.CFrame=clerp(b.CFrame,ref3.CFrame*CFrame.new(0,-12,0),.55) | |
| 3735 | b2.CFrame=b.CFrame*CFrame.new(0,-8,0) | |
| 3736 | b.BrickColor=BrickColor.new(modecolor[1]) | |
| 3737 | --[[Effect(e,modecolor[1],b.CFrame*CFrame.Angles(math.rad(90),0,0),21,21,21,-1.8,-1.8,-1.8,.08,"Sphere",3,5,"") | |
| 3738 | Effect(e,modecolor[1],b.CFrame*CFrame.Angles(-math.rad(90),0,0),17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"") | |
| 3739 | Effect(e,modecolor[1],b.CFrame,17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"") | |
| 3740 | Effect(e,modecolor[1],b.CFrame*CFrame.Angles(math.rad(180),0,0),17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"")]] | |
| 3741 | Effect(e,modecolor[2],b.CFrame,12,12,12,-0.4,-0.4,-0.4,.03,"Brick",1,0,"") | |
| 3742 | end | |
| 3743 | sounds(b,"161006033",2.1,1.2) | |
| 3744 | REffect(e,modecolor[2],b2.CFrame,460,460,460,-36,-36,-36,.09,"Sphere",6,0,"") | |
| 3745 | REffect(e,modecolor[1],b2.CFrame,410,410,410,-31,-31,-31,.07,"Sphere",6,0,"") | |
| 3746 | pe1.Enabled=false | |
| 3747 | pe2.Enabled=false | |
| 3748 | pe3.Enabled=false | |
| 3749 | pe4.Enabled=false | |
| 3750 | pe5.Enabled=false | |
| 3751 | b.Transparency=1 | |
| 3752 | b2.Transparency=1 | |
| 3753 | game:GetService("Debris"):AddItem(b,2)
| |
| 3754 | game:GetService("Debris"):AddItem(b2,2)
| |
| 3755 | end),ref,ref2) | |
| 3756 | for i=0,1,0.05 do | |
| 3757 | swait() | |
| 3758 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3759 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3760 | RJ.C0=clerp(RJ.C0,CFrame.new(2.38418579e-07, -0.119088888, 0.249210283, 1, -4.55057367e-17, 1.10897689e-17, -4.68375339e-17, 0.971565545, -0.236770973, 0, 0.236770973, 0.971565545)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 3761 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.46478796, 0.102222204, 1, 0, 0, 0, 0.945410788, -0.325881213, 0, 0.325881213, 0.945410788)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 3762 | RS.C0=clerp(RS.C0,CFrame.new(0.810381949, 1.50181496, 0.139244169, 0.889812589, 0.453426152, 0.0513653941, 0.426988274, -0.867022693, 0.256812662, 0.160980552, -0.20658271, -0.965095401)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 3763 | LS.C0=clerp(LS.C0,CFrame.new(-0.924702704, 1.44091558, 0.191743314, 0.889059901, -0.361923337, 0.280328482, -0.430704117, -0.868800759, 0.244293675, 0.155134037, -0.337930322, -0.928297818)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 3764 | RH.C0=clerp(RH.C0,CFrame.new(0.515058815, -2.00770903, -0.0951328576, 0.986369133, -0.0382156111, -0.160048559, 0.0661491379, 0.982692778, 0.173030421, 0.150666088, -0.181258947, 0.971825659)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 3765 | LH.C0=clerp(LH.C0,CFrame.new(-0.585299909, -1.92810965, 0.447539657, 0.991744101, 0.0477011502, 0.119030349, -0.0912316293, 0.914770901, 0.393536806, -0.0901133269, -0.401147127, 0.911570549)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 3766 | ref3Weld.C0=clerp(ref3Weld.C0,CFrame.new(-0.339553475, -1.4039911, -0.125705943, 0.879378259, -0.476123959, 6.53043389e-06, 0.476123869, 0.879378259, -1.25728548e-05, 2.57045031e-07, 1.4188583e-05, 1.00000012)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3767 | end | |
| 3768 | CameraShake(200,Root,3,.07) | |
| 3769 | sounds(RArm,"231917950",3,1) | |
| 3770 | local did=false | |
| 3771 | for i=0,1,0.04 do | |
| 3772 | swait() | |
| 3773 | ||
| 3774 | if i>=.3 and not did then | |
| 3775 | did=true | |
| 3776 | local hit,pos=rayCast(ref2.Position,(CFrame.new(ref2.Position,ref2.Position-Vector3.new(0,1,0))).lookVector,23,chr) | |
| 3777 | if hit~=nil then | |
| 3778 | CameraShake(150,Root,3,.05) | |
| 3779 | cancel=true | |
| 3780 | local ref4=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 3781 | ref4.Anchored=true | |
| 3782 | ref4.CFrame=CFrame.new(pos) | |
| 3783 | sounds(ref4,"199145477",4.2,.8) | |
| 3784 | Effect(e,modecolor[1],ref4.CFrame,9,9,9,24,24,24,.055,"Sphere",1,0,"") | |
| 3785 | Effect(e,modecolor[2],ref4.CFrame,9,9,9,28,28,28,.055,"Sphere",1,0,"") | |
| 3786 | Effect(e,modecolor[2],ref4.CFrame,9,9,9,24,24,24,.045,"Brick",1,0,"") | |
| 3787 | Effect(e,modecolor[2],ref4.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),0.025,0.08,0.025,0.03,0,0.03,.03,"FileMesh",2,math.random(-12,12),"662585058") | |
| 3788 | Effect(e,modecolor[2],ref4.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),0.025,0.08,0.025,0.04,0,0.04,.03,"FileMesh",2,math.random(-12,12),"662585058") | |
| 3789 | Mdamage("None",ref4,34,math.random(16,29),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3790 | end | |
| 3791 | end | |
| 3792 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3793 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3794 | RJ.C0=clerp(RJ.C0,CFrame.new(-4.76837158e-07, -0.534327865, -0.472480059, 1, -4.3108779e-17, -1.83136034e-17, -4.68375339e-17, 0.920389593, 0.391002744, 0, -0.391002774, 0.920389593)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3795 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.54506469, -0.0941708535, 1, 0, 0, 0, 0.977411032, 0.211348087, 0, -0.211348116, 0.977411032)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3796 | RS.C0=clerp(RS.C0,CFrame.new(0.623248339, 0.0663975775, -0.989547253, 0.892504275, 0.445775092, 0.06870801, -0.169266313, 0.472229719, -0.865071297, -0.418073177, 0.760449767, 0.496921778)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3797 | LS.C0=clerp(LS.C0,CFrame.new(-0.794072747, 0.143703133, -1.13711655, 0.896461904, -0.381762147, -0.224974737, 0.0542985052, 0.598518014, -0.799267173, 0.439781368, 0.704296827, 0.557277679)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3798 | RH.C0=clerp(RH.C0,CFrame.new(0.535078466, -1.55263913, -0.615540802, 0.986369133, 0.0366246849, -0.160420105, -0.0370412953, 0.999313772, 0.000393778086, 0.160324425, 0.00555378199, 0.987048864)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3799 | LH.C0=clerp(LH.C0,CFrame.new(-0.656296074, -1.97833455, 0.176470339, 0.983795345, 0.1080091, 0.143111289, -0.132097289, 0.976337314, 0.171219081, -0.12123166, -0.187349141, 0.974783778)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3800 | ref3Weld.C0=clerp(ref3Weld.C0,CFrame.new(0.328430176, -2.36074233, -0.717041135, 0.895333111, -0.378419548, 0.234898612, 0.428094953, 0.585576236, -0.688356936, 0.122936681, 0.716867626, 0.686285257)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 3801 | end | |
| 3802 | cancel=true | |
| 3803 | elseif combo==3 then | |
| 3804 | combo=4 | |
| 3805 | CameraShake(300,Root,3,.12) | |
| 3806 | local cancel=false | |
| 3807 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,.4) | |
| 3808 | meshs(ref,"Mesh",Vector3.new(40,40,40),Enum.MeshType.Sphere,"") | |
| 3809 | ref.Anchored=true | |
| 3810 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 3811 | ref2.Anchored=true | |
| 3812 | local ref3=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 3813 | local ref3Weld=welds(ref3,"refWeld",RArm,ref3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 3814 | ref.CFrame=ref3.CFrame*CFrame.new(0,-12,0) | |
| 3815 | ref2.CFrame=ref.CFrame*CFrame.new(0,-8,0) | |
| 3816 | coroutine.resume(coroutine.create(function(b,b2) | |
| 3817 | sounds(b,"750074147",2.3,1.4) | |
| 3818 | LockEffect(e,modecolor[2],b2.CFrame,b2,9,9,9,36,36,36,.09,"Sphere",6,0,"") | |
| 3819 | LockEffect(e,modecolor[1],b2.CFrame,b2,9,9,9,31,31,31,.07,"Sphere",6,0,"") | |
| 3820 | local pe1=particles(b,.5,modecolor[1],"262059101",.7,1,"Top",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3821 | local pe2=particles(b,.5,modecolor[1],"262059101",.7,1,"Bottom",4.5,.2,0,1,.45,.45,55,55,100,0,true) | |
| 3822 | local pe3=particles(b,.5,modecolor[1],"262059101",.7,1,"Front",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3823 | local pe4=particles(b,.5,modecolor[1],"262059101",.7,1,"Back",4.5,.2,0,1,.45,.45,55,55,40,0,true) | |
| 3824 | local pe5=particles(b,.6,modecolor[2],"262059101",.4,1,"Back",8,.2,0,1,.45,.45,55,55,0,0,true) | |
| 3825 | while not cancel do | |
| 3826 | swait() | |
| 3827 | pe1.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3828 | pe2.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3829 | pe3.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3830 | pe4.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3831 | pe5.Color=CSn(BrickColor.new(modecolor[2]).Color) | |
| 3832 | b.CFrame=clerp(b.CFrame,ref3.CFrame*CFrame.new(0,-12,0),.55) | |
| 3833 | b2.CFrame=b.CFrame*CFrame.new(0,-8,0) | |
| 3834 | b.BrickColor=BrickColor.new(modecolor[2]) | |
| 3835 | --[[Effect(e,modecolor[1],b.CFrame*CFrame.Angles(math.rad(90),0,0),21,21,21,-1.8,-1.8,-1.8,.08,"Sphere",3,5,"") | |
| 3836 | Effect(e,modecolor[1],b.CFrame*CFrame.Angles(-math.rad(90),0,0),17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"") | |
| 3837 | Effect(e,modecolor[1],b.CFrame,17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"") | |
| 3838 | Effect(e,modecolor[1],b.CFrame*CFrame.Angles(math.rad(180),0,0),17,17,17,-1.5,-1.5,-1.5,.08,"Sphere",3,2,"")]] | |
| 3839 | Effect(e,modecolor[2],b.CFrame,12,12,12,-0.4,-0.4,-0.4,.03,"Brick",1,0,"") | |
| 3840 | end | |
| 3841 | sounds(b,"161006033",2.1,1.2) | |
| 3842 | REffect(e,modecolor[2],b2.CFrame,460,460,460,-36,-36,-36,.09,"Sphere",6,0,"") | |
| 3843 | REffect(e,modecolor[1],b2.CFrame,410,410,410,-31,-31,-31,.07,"Sphere",6,0,"") | |
| 3844 | pe1.Enabled=false | |
| 3845 | pe2.Enabled=false | |
| 3846 | pe3.Enabled=false | |
| 3847 | pe4.Enabled=false | |
| 3848 | pe5.Enabled=false | |
| 3849 | b.Transparency=1 | |
| 3850 | b2.Transparency=1 | |
| 3851 | game:GetService("Debris"):AddItem(b,2)
| |
| 3852 | game:GetService("Debris"):AddItem(b2,2)
| |
| 3853 | end),ref,ref2) | |
| 3854 | for i=0,1,0.05 do | |
| 3855 | swait() | |
| 3856 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3857 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3858 | RJ.C0=clerp(RJ.C0,CFrame.new(1.28732972e-06, -2.38642741e-07, -2.29314137e-05, 0.783472121, 1.67892013e-05, 0.621427059, -1.86428115e-05, 1, -3.51301242e-06, -0.621427059, -8.83279972e-06, 0.783472121)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3859 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0448735096, 1.54794204, -0.195440426, 0.968845189, -4.47034836e-08, 0.24766773, -0.0662154704, 0.963597894, 0.259026736, -0.23865208, -0.267356277, 0.933577061)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3860 | RS.C0=clerp(RS.C0,CFrame.new(0.29042989, 0.376297951, -1.22186887, -0.311605334, 0.807442546, 0.500938058, 0.949222326, 0.288562894, 0.125334352, -0.0433518589, 0.514556348, -0.856360137)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3861 | LS.C0=clerp(LS.C0,CFrame.new(-1.07919252, 0.0987480283, -0.579094172, 0.17393896, -0.164322168, -0.970949888, -0.90159148, 0.369997233, -0.224131674, 0.396078587, 0.9143852, -0.0837945938)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3862 | RH.C0=clerp(RH.C0,CFrame.new(0.575580776, -1.99633896, 0.0238939822, 0.952368557, -0.0448049083, -0.301640451, 0.0469961502, 0.998895109, 7.43551846e-06, 0.301306814, -0.0141830174, 0.953421831)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3863 | LH.C0=clerp(LH.C0,CFrame.new(-0.607688963, -1.9925158, 0.0269080549, 0.96790719, 0.0671848059, 0.242161036, -0.0678835139, 0.997678339, -0.00546690216, -0.241966069, -0.0111472923, 0.970220804)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 3864 | ref3Weld.C0=clerp(ref3Weld.C0,CFrame.new(0.296221167, -2.64052916, -0.701650858, -0.0350038707, -0.26758343, -0.96289891, -0.384329289, 0.892998993, -0.234187409, 0.92253232, 0.361872703, -0.134098589)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(90),0),.2) | |
| 3865 | end | |
| 3866 | CameraShake(200,Root,3,.07) | |
| 3867 | sounds(RArm,"231917950",3,1.2) | |
| 3868 | for i=0,1,0.07 do | |
| 3869 | swait() | |
| 3870 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3871 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3872 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(0-360*i),0),.3) | |
| 3873 | Neck.C0=clerp(Neck.C0,CFrame.new(1.31440174e-07, 1.50002575, 3.36200173e-07, 0.926640868, -4.68375339e-17, -0.375947952, 1.12784383e-05, 1, 2.77992258e-05, 0.375947952, -2.99999992e-05, 0.926640868)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3874 | RS.C0=clerp(RS.C0,CFrame.new(0.661122561, 0.503073812, -1.00451171, 0.04843501, 0.283294022, 0.957809329, 0.998760879, -0.00275638001, -0.0496906154, -0.0114369653, 0.959029198, -0.283076495)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3875 | LS.C0=clerp(LS.C0,CFrame.new(-0.725331068, 0.462984473, -1.13535786, 0.110881962, -0.5116871, -0.851986825, -0.993392766, -0.0315327607, -0.110347293, 0.0295977909, 0.858593047, -0.511802673)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3876 | RH.C0=clerp(RH.C0,CFrame.new(0.571546912, -1.99462426, 0.0136942491, 0.979452014, -0.0747761354, -0.187302768, 0.0745276287, 0.9971838, -0.00837845076, 0.187401772, -0.00575294066, 0.982266545)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3877 | LH.C0=clerp(LH.C0,CFrame.new(-0.481992334, -2.00082278, 0.000278885476, 0.999008358, 0.041837696, -0.0152316298, -0.0418425575, 0.999124229, -6.91912646e-07, 0.0152182607, 0.000638021622, 0.999884009)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3878 | ref3Weld.C0=clerp(ref3Weld.C0,CFrame.new(0.00043867901, -3.24415588, 0.357974499, 0.04843501, -0.00190427434, -0.998824596, 0.283294022, 0.958959222, 0.0119092269, 0.957809329, -0.283537835, 0.046986673)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(90),0),.3) | |
| 3879 | end | |
| 3880 | CameraShake(200,Root,3,.07) | |
| 3881 | sounds(RArm,"231917950",3,1.2) | |
| 3882 | for i=0,1,0.06 do | |
| 3883 | swait() | |
| 3884 | Mdamage("None",ref2,16,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3885 | Mdamage("None",ref,12,math.random(14,28),0.1,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 3886 | RJ.C0=clerp(RJ.C0,CFrame.new(0.00488162786, -1.284061e-07, -1.91433355e-06, 0.849624693, 0.125300646, -0.512286782, -0.107310474, 0.992118835, 0.0646893829, 0.516355038, 1.20363748e-05, 0.856374621)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3887 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.12903294, 1.49859369, 0.00117851794, 0.942966461, -0.0439323783, -0.329976231, 0.0809634626, 0.991755605, 0.0993273333, 0.32289198, -0.12037836, 0.938749194)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3888 | RS.C0=clerp(RS.C0,CFrame.new(1.7934128, 0.596460342, -0.734150171, -0.207759261, -0.785725176, 0.582642496, 0.966329157, -0.0724243745, 0.24690643, -0.151803061, 0.614321411, 0.774315953)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3889 | LS.C0=clerp(LS.C0,CFrame.new(-0.965957642, 0.0528070331, -0.641774297, 0.125672773, -0.414988816, -0.901105404, -0.866289914, 0.396748781, -0.303533167, 0.483475268, 0.81876421, -0.30964005)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3890 | RH.C0=clerp(RH.C0,CFrame.new(0.706715465, -1.90728927, -0.410100639, 0.982069135, -0.187512457, 0.0194867253, 0.188519359, 0.97737062, -0.0959544182, -0.00105315447, 0.0979074761, 0.995195031)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3891 | LH.C0=clerp(LH.C0,CFrame.new(-0.194659039, -2.04544735, 0.117722742, 0.861130357, -0.0713407099, 0.503354013, 0.0836637765, 0.996492267, -0.00189718453, -0.501452982, 0.0437462181, 0.864078224)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3892 | ref3Weld.C0=clerp(ref3Weld.C0,CFrame.new(-0.00441752002, -4.27024221, 0.172511399, -0.225322813, 0.0094427634, -0.974238515, 0.0375847071, 0.999293029, 0.000992979854, 0.973559022, -0.0363927335, -0.225518405)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(90),0),.4) | |
| 3893 | end | |
| 3894 | cancel=true | |
| 3895 | elseif combo==4 then | |
| 3896 | combo=1 | |
| 3897 | sounds(LArm,"169380469",2.1,1.6) | |
| 3898 | for i=0,1,0.07 do | |
| 3899 | swait() | |
| 3900 | RJ.C0=clerp(RJ.C0,CFrame.new(-5.18974157e-05, -3.57904262e-11, 2.50262747e-05, 0.0226980112, -1.49922716e-05, -0.999742448, 2.99922722e-05, 1, -1.43151965e-05, 0.999742448, -2.96596172e-05, 0.0226980112)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3901 | Neck.C0=clerp(Neck.C0,CFrame.new(2.09137615e-05, 1.50002193, -7.44853169e-05, 0.0226980112, 2.99922722e-05, 0.999742448, -1.49922716e-05, 1, -2.96596172e-05, -0.999742448, -1.43151965e-05, 0.0226980112)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3902 | RS.C0=clerp(RS.C0,CFrame.new(1.14161444, -0.139777854, 0.428804278, 0.965056121, 0.249926701, -0.0787632763, -0.202412471, 0.901866138, 0.381663144, 0.166421756, -0.352383703, 0.920939565)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3903 | LS.C0=clerp(LS.C0,CFrame.new(-1.99634326, 0.497669905, -0.0165724773, -0.00235308148, 0.999617815, -0.0275486186, -0.0356450044, -0.0276150275, -0.998982906, -0.999361873, -0.00136871822, 0.0356963612)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3904 | RH.C0=clerp(RH.C0,CFrame.new(0.426824182, -1.97647703, 0.219085962, 0.948484004, 0.0321879238, -0.315186054, 4.7511553e-06, 0.994824469, 0.101609327, 0.31682533, -0.0963763148, 0.943574905)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3905 | LH.C0=clerp(LH.C0,CFrame.new(-0.650745988, -1.98775935, 0.00763739832, -0.0507533178, 0.081206575, 0.995404363, -1.49768102e-05, 0.996688664, -0.08131212, -0.998711407, -0.00414176844, -0.0505840406)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 3906 | end | |
| 3907 | CameraShake(200,Root,3,.05) | |
| 3908 | sounds(LArm,"376731810",3,1.1) | |
| 3909 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(0,0,-2)*CFrame.Angles(math.rad(90),0,0),0.025,0.02,0.025,0.024,0,0.024,.05,"FileMesh",2,math.random(-12,12),"662585058") | |
| 3910 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(0,0,-2)*CFrame.Angles(math.rad(90),0,0),0.025,0.02,0.025,0.029,0,0.029,.05,"FileMesh",2,math.random(-12,12),"662585058") | |
| 3911 | Effect(e,modecolor[1],Root.CFrame*CFrame.new(0,0,-2),4,4,7,17,17,0,0.03,"Sphere",6,0,"") | |
| 3912 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(0,0,-2),4,4,5,22,22,0,0.045,"Sphere",6,0,"") | |
| 3913 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,.4) | |
| 3914 | meshs(ref,"Mesh",Vector3.new(26,26,26),Enum.MeshType.Sphere,"") | |
| 3915 | ref.Anchored=true | |
| 3916 | ref.CFrame=Root.CFrame*CFrame.new(0,0,-4) | |
| 3917 | coroutine.resume(coroutine.create(function() | |
| 3918 | local p1=particles(ref,.5,modecolor[1],"262059101",.7,1,"Back",6,2,0,1,.45,.45,55,55,160,0,false) | |
| 3919 | local p2=particles(ref,1.8,modecolor[2],"262059101",.7,1,"Top",16,7,0,1,.25,.55,55,55,120,44444,false) | |
| 3920 | p2.Speed=NRn(-120,120) | |
| 3921 | local spin=0 | |
| 3922 | local as=0 | |
| 3923 | for i=0,1,0.01 do | |
| 3924 | swait() | |
| 3925 | spin=spin+13 | |
| 3926 | as=as+1 | |
| 3927 | ref.CFrame=ref.CFrame*CFrame.new(0,0,-1-i*4) | |
| 3928 | ref.BrickColor=BrickColor.new(modecolor[1]) | |
| 3929 | p1.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 3930 | p2.Color=CSn(BrickColor.new(modecolor[2]).Color) | |
| 3931 | Effect(e,modecolor[2],ref.CFrame*CFrame.Angles(math.rad(90),math.rad(spin),0)*CFrame.new(0,0,17),11,11,11,-.7,-.7,-.7,.08,"Brick",1,0,"") | |
| 3932 | Effect(e,modecolor[2],ref.CFrame*CFrame.Angles(math.rad(90),math.rad(180+spin),0)*CFrame.new(0,0,17),11,11,11,-.7,-.7,-.7,.08,"Brick",1,0,"") | |
| 3933 | Effect(e,modecolor[2],ref.CFrame*CFrame.Angles(math.rad(90),math.rad(90+spin),0)*CFrame.new(0,0,17),11,11,11,-.7,-.7,-.7,.08,"Brick",1,0,"") | |
| 3934 | Effect(e,modecolor[2],ref.CFrame*CFrame.Angles(math.rad(90),math.rad(270+spin),0)*CFrame.new(0,0,17),11,11,11,-.7,-.7,-.7,.08,"Brick",1,0,"") | |
| 3935 | --Effect(e,modecolor[1],ref.CFrame,32,32,32,-1,-1,-1,.05,"Sphere",3,2,"") | |
| 3936 | --Effect(e,modecolor[2],ref.CFrame,16,16,16,-0.8,-0.8,-0.8,.045,"Sphere",3,4.5,"") | |
| 3937 | if as>=7 then | |
| 3938 | as=0 | |
| 3939 | Mdamage("None",ref,15,math.random(14,28),0,"")
| |
| 3940 | Effect(e,modecolor[1],ref.CFrame,26,26,26,9,9,9,.06,"Sphere",6,0,"") | |
| 3941 | Effect(e,modecolor[1],ref.CFrame,26,26,26,9,9,9,.07,"Brick",1,0,"") | |
| 3942 | Effect(e,modecolor[2],ref.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),0.025,0.02,0.025,0.015,0,0.015,.06,"FileMesh",2,math.random(-12,12),"662585058") | |
| 3943 | Effect(e,modecolor[2],ref.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),0.025,0.02,0.025,0.015,0,0.015,.06,"FileMesh",2,math.random(-12,12),"662585058") | |
| 3944 | sounds(ref,"1104127572",2.3,.9) | |
| 3945 | end | |
| 3946 | end | |
| 3947 | Mdamage("None",ref,15,math.random(14,28),0,"")
| |
| 3948 | Effect(e,modecolor[1],ref.CFrame,26,26,26,9,9,9,.06,"Sphere",6,0,"") | |
| 3949 | Effect(e,modecolor[1],ref.CFrame,26,26,26,9,9,9,.07,"Brick",1,0,"") | |
| 3950 | Effect(e,modecolor[2],ref.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),0.025,0.02,0.025,0.015,0,0.015,.06,"FileMesh",2,math.random(-12,12),"662585058") | |
| 3951 | Effect(e,modecolor[2],ref.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),0.025,0.02,0.025,0.015,0,0.015,.06,"FileMesh",2,math.random(-12,12),"662585058") | |
| 3952 | sounds(ref,"1104127572",2.3,.9) | |
| 3953 | ref.Transparency=1 | |
| 3954 | p1.Enabled=false | |
| 3955 | p2.Enabled=false | |
| 3956 | game:GetService("Debris"):AddItem(ref,2)
| |
| 3957 | end)) | |
| 3958 | for i=0,1,0.05 do | |
| 3959 | swait() | |
| 3960 | if i<=.3 then | |
| 3961 | Root.Velocity=Root.CFrame.lookVector*-55 | |
| 3962 | end | |
| 3963 | RJ.C0=clerp(RJ.C0,CFrame.new(-5.21057518e-05, -0.0448361821, 0.030749118, 0.0226979945, -1.50071482e-05, -0.999742448, -0.0711710677, 0.997462809, -0.00163082976, 0.997205913, 0.0711897463, 0.0226393379)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3964 | Neck.C0=clerp(Neck.C0,CFrame.new(2.18548212e-05, 1.50002003, -7.40095129e-05, 0.0226979945, 3.0785799e-05, 0.999742508, -1.50071482e-05, 1.00000012, -3.04505229e-05, -0.999742448, -1.43122161e-05, 0.0226980001)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3965 | RS.C0=clerp(RS.C0,CFrame.new(1.05461609, -0.106462374, 0.407556772, 0.910482347, 0.405978203, -0.0787645504, -0.348674446, 0.856014609, 0.381661087, 0.222369686, -0.320032448, 0.92094034)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3966 | LS.C0=clerp(LS.C0,CFrame.new(-1.91300666, 0.890266061, -0.0307729132, -0.0023520235, 0.923436165, -0.383745134, -0.0356464684, -0.383579701, -0.922819674, -0.999361873, 0.0115086632, 0.0338194221)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3967 | RH.C0=clerp(RH.C0,CFrame.new(0.441822261, -1.98690403, 0.116540954, 0.9890697, 0.0317291766, -0.143995434, -0.0173374061, 0.99482429, 0.100121528, 0.146426916, -0.0965306535, 0.984500527)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3968 | LH.C0=clerp(LH.C0,CFrame.new(-0.713589907, -2.05561805, 0.0108332587, -0.0507525876, 0.202335194, 0.978000462, -1.70830899e-05, 0.979262173, -0.202597111, -0.998711407, -0.0102990363, -0.0496966392)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3969 | end | |
| 3970 | end | |
| 3971 | attack=false | |
| 3972 | end | |
| 3973 | ||
| 3974 | function Skill1() | |
| 3975 | attack=true | |
| 3976 | if mode=="Rust" then | |
| 3977 | for i=0,1,0.08 do | |
| 3978 | swait() | |
| 3979 | RJ.C0=clerp(RJ.C0,CFrame.new(0.108145848, -0.986450672, 0.627359629, 0.354181021, -0.14498426, -0.923869789, 0.378859729, 0.925454199, 9.35352909e-06, 0.854997754, -0.350020409, 0.38270694)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3980 | Neck.C0=clerp(Neck.C0,CFrame.new(0.0420796387, 1.49848616, 0.0143201519, 0.322123408, 0.0328362063, 0.94612813, 1.83284283e-06, 0.99939841, -0.0346856453, -0.946697712, 0.0111747757, 0.321929514)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3981 | RS.C0=clerp(RS.C0,CFrame.new(1.19714284, 0.558289051, -0.664468408, -0.144166678, 0.728330433, 0.669888735, 0.988556743, 0.0756260306, 0.130523473, 0.0444031656, 0.681040049, -0.730898619)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3982 | LS.C0=clerp(LS.C0,CFrame.new(-1.69497967, 0.211366251, 0.40616715, 0.849349976, 0.435251802, 0.298597783, -0.503121436, 0.838650644, 0.208648711, -0.15960443, -0.327446699, 0.931292236)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3983 | RH.C0=clerp(RH.C0,CFrame.new(0.588245749, -1.4585731, -0.173470497, 0.987190008, -0.15541023, 0.0361097753, 0.137670785, 0.944102466, 0.299529105, -0.0806412697, -0.290720761, 0.953403652)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3984 | LH.C0=clerp(LH.C0,CFrame.new(-1.41836524, -0.868770897, -0.149174899, 0.332392514, 0.636529565, 0.695949376, -0.0422950536, 0.747223735, -0.663225532, -0.942192316, 0.191015944, 0.275293529)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3985 | end | |
| 3986 | ||
| 3987 | hum.WalkSpeed=0 | |
| 3988 | hum.JumpPower=0 | |
| 3989 | hum.AutoRotate=false | |
| 3990 | local hits=nil | |
| 3991 | local poss | |
| 3992 | for i=1,300 do | |
| 3993 | swait() | |
| 3994 | RJ.C0=clerp(RJ.C0,CFrame.new(0.00523090363, -1.43928123, 0.500698686, 0.608538032, -0.0426248461, 0.792379022, -0.465371341, 0.789637804, 0.39987722, -0.642737091, -0.612091064, 0.460688204)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3995 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0926128924, 1.51767898, 0.131960645, 0.376569808, 0.156476825, -0.913077414, -0.0574150234, 0.987678826, 0.145582512, 0.924607277, -0.00239765272, 0.380914152)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3996 | RS.C0=clerp(RS.C0,CFrame.new(1.72637379, 0.409455806, -0.724692047, 0.0618917122, -0.811497867, 0.581068516, 0.993587911, 0.105286941, 0.0412091203, -0.0946200863, 0.574792027, 0.812810659)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3997 | LS.C0=clerp(LS.C0,CFrame.new(-1.93455589, 0.460196197, 0.217768371, 0.0587107539, 0.972400784, 0.225809187, -0.870207429, 0.160694644, -0.465743035, -0.489175141, -0.16915673, 0.855624735)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3998 | RH.C0=clerp(RH.C0,CFrame.new(0.7833848, -0.738480449, -0.797707796, 0.773465216, -0.17603536, -0.608903348, 0.0556301139, 0.975805998, -0.211443081, 0.631392956, 0.129670456, 0.764544725)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 3999 | LH.C0=clerp(LH.C0,CFrame.new(-1.08285952, -1.81155241, -0.105949007, 0.620193243, 0.434748054, -0.652958214, -0.305137783, 0.90052408, 0.309754282, 0.722669542, 0.00713464618, 0.691156805)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4000 | if i>=5 then | |
| 4001 | hits,poss=rayCast(RArm.Position,-RArm.CFrame.upVector,7,chr) | |
| 4002 | if hits then | |
| 4003 | break | |
| 4004 | end | |
| 4005 | end | |
| 4006 | end | |
| 4007 | ||
| 4008 | if hits then | |
| 4009 | Effect(e,modecolor[1],CFrame.new(poss),3,3,3,10,10,10,.06,"Sphere",6,0,"") | |
| 4010 | Effect(e,modecolor[2],CFrame.new(poss),3,3,3,7,7,7,.06,"Brick",1,0,"") | |
| 4011 | Effect(e,modecolor[1],CFrame.new(poss)*CFrame.Angles(0,math.random(-120,120),0),3,3,3,2,.1,2,.04,"FileMesh",2,math.random(-14,14),"20329976") | |
| 4012 | Effect(e,modecolor[2],CFrame.new(poss)*CFrame.Angles(0,math.random(-120,120),0),3,1,3,1.2,.1,1.2,.04,"FileMesh",2,math.random(-14,14),"20329976") | |
| 4013 | CameraShake(270,Root,3,.06) | |
| 4014 | local function howtohurt(cf) | |
| 4015 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.CorrodedMetal,0,1) | |
| 4016 | ref.CFrame=cf | |
| 4017 | ref.Anchored=true | |
| 4018 | game:GetService("Debris"):AddItem(ref,.1)
| |
| 4019 | local hit,pos=rayCast(ref.Position,(CFrame.new(ref.Position,ref.Position-Vector3.new(0,1,0))).lookVector,10,chr) | |
| 4020 | if hit~=nil then | |
| 4021 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.CorrodedMetal,0,transp) | |
| 4022 | meshs(ref2,"Mesh",Vector3.new(8,75,8),Enum.MeshType.Brick,"") | |
| 4023 | ref2.CFrame=CFrame.new(pos)*CFrame.Angles(math.rad(math.random(-15,15)),math.random(-120,120),math.rad(math.random(-15,15))) | |
| 4024 | ref2.CFrame=ref2.CFrame*CFrame.new(0,-math.random(30,40)/5,0) | |
| 4025 | ref2.Anchored=true | |
| 4026 | ref2.CanCollide=true | |
| 4027 | local ref3=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.CorrodedMetal,0,transp) | |
| 4028 | meshs(ref3,"Mesh",Vector3.new(8,45,8),Enum.MeshType.Wedge,"") | |
| 4029 | ref3.CFrame=ref2.CFrame*CFrame.new(0,12,0) | |
| 4030 | ref3.Anchored=true | |
| 4031 | ref3.CanCollide=true | |
| 4032 | local ref4=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.CorrodedMetal,0,transp) | |
| 4033 | meshs(ref4,"Mesh",Vector3.new(1,1,1),Enum.MeshType.Cylinder,"") | |
| 4034 | ref4.CFrame=CFrame.new(pos)*CFrame.Angles(0,0,math.rad(90)) | |
| 4035 | ref4.Anchored=true | |
| 4036 | coroutine.resume(coroutine.create(function(a1,a2,a3) | |
| 4037 | game:GetService("Debris"):AddItem(a1,11)
| |
| 4038 | game:GetService("Debris"):AddItem(a2,11)
| |
| 4039 | game:GetService("Debris"):AddItem(a3,11)
| |
| 4040 | local h3=particles(a1,.5,"Rust","363275192",.2,1,"Top",7,3,0,1,1,1.3,55,55,14,145,false,21) | |
| 4041 | h3.Acceleration=Vector3.new(0, -11, 0) | |
| 4042 | local h4=particles(a1,.5,"Rust","363275192",.2,1,"Top",4,1,0,1,.3,.5,55,55,60,14,false,21) | |
| 4043 | h4.Acceleration=Vector3.new(0, -80, 0) | |
| 4044 | sounds(a3,"588705525",4,1.4) | |
| 4045 | local la=a1.CFrame | |
| 4046 | local la2=a2.CFrame | |
| 4047 | local hitt=nil | |
| 4048 | local a=false | |
| 4049 | Effect(e,modecolor[1],CFrame.new(pos)*CFrame.Angles(0,math.random(-120,120),0),3,3,3,.7,.1,.7,.07,"FileMesh",2,math.random(-14,14),"20329976") | |
| 4050 | Effect(e,modecolor[2],CFrame.new(pos)*CFrame.Angles(0,math.random(-120,120),0),0.015,0.02,0.015,0.011,0,0.011,.04,"FileMesh",2,math.random(-12,12),"662585058") | |
| 4051 | for i=0,1,.08 do | |
| 4052 | swait() | |
| 4053 | a3:findFirstChild("Mesh").Scale=clerp(a3:findFirstChild("Mesh").Scale,Vector3.new(1,32,32),.2)
| |
| 4054 | a1.CFrame=clerp(a1.CFrame,la*CFrame.new(0,8,0),.2) | |
| 4055 | a2.CFrame=clerp(a2.CFrame,la2*CFrame.new(0,8,0),.2) | |
| 4056 | local vict=FindNearestTorso(a1.Position,14) | |
| 4057 | if vict~=nil and not vict.Parent:findFirstChild("RGSEStabb") then
| |
| 4058 | hitt=vict | |
| 4059 | if a==false then | |
| 4060 | a=true | |
| 4061 | local aaaa=create("StringValue"){
| |
| 4062 | Name="RGSEStabb", | |
| 4063 | Value="Stab", | |
| 4064 | Parent=hitt.Parent} | |
| 4065 | game:GetService("Debris"):AddItem(aaaa,7)
| |
| 4066 | sounds(a2,"703633905",4,.9) | |
| 4067 | Mdamage("None",hitt,3,math.random(14,23),0,"")
| |
| 4068 | break | |
| 4069 | end | |
| 4070 | if hitt.Parent:findFirstChild("HumanoidRootPart") then
| |
| 4071 | hitt.Parent:findFirstChild("HumanoidRootPart").Anchored=true
| |
| 4072 | hitt.Parent:findFirstChild("HumanoidRootPart").CFrame=a1.CFrame*CFrame.new(0,13,0)*CFrame.Angles(math.rad(90),0,0)
| |
| 4073 | else | |
| 4074 | hitt.Anchored=true | |
| 4075 | hitt.CFrame=a1.CFrame*CFrame.new(0,13,0)*CFrame.Angles(math.rad(90),0,0) | |
| 4076 | end | |
| 4077 | if hitt.Parent:findFirstChildOfClass("Humanoid") then
| |
| 4078 | hitt.Parent:findFirstChildOfClass("Humanoid").PlatformStand=true
| |
| 4079 | end | |
| 4080 | end | |
| 4081 | end | |
| 4082 | local stay=0 | |
| 4083 | if hitt then | |
| 4084 | for i=0,2,.01 do | |
| 4085 | swait() | |
| 4086 | a3:findFirstChild("Mesh").Scale=clerp(a3:findFirstChild("Mesh").Scale,Vector3.new(1,32,32),.2)
| |
| 4087 | a1.CFrame=clerp(a1.CFrame,la*CFrame.new(0,8,0),.2) | |
| 4088 | a2.CFrame=clerp(a2.CFrame,la2*CFrame.new(0,8,0),.2) | |
| 4089 | stay=stay+1 | |
| 4090 | if stay>=14 then | |
| 4091 | Mdamage("None",hitt,3,math.random(2,3),0,"")
| |
| 4092 | stay=0 | |
| 4093 | end | |
| 4094 | if hitt.Parent:findFirstChild("HumanoidRootPart") then
| |
| 4095 | hitt.Parent:findFirstChild("HumanoidRootPart").Anchored=true
| |
| 4096 | hitt.Parent:findFirstChild("HumanoidRootPart").CFrame=a1.CFrame*CFrame.new(0,13-2*i,0)*CFrame.Angles(math.rad(90),0,0)
| |
| 4097 | else | |
| 4098 | hitt.Anchored=true | |
| 4099 | hitt.CFrame=a1.CFrame*CFrame.new(0,13-2*i,0)*CFrame.Angles(math.rad(90),0,0) | |
| 4100 | end | |
| 4101 | if hitt.Parent:findFirstChildOfClass("Humanoid") then
| |
| 4102 | hitt.Parent:findFirstChildOfClass("Humanoid").PlatformStand=true
| |
| 4103 | end | |
| 4104 | end | |
| 4105 | else | |
| 4106 | swait(90) | |
| 4107 | end | |
| 4108 | if hitt~=nil then | |
| 4109 | if hitt.Parent:findFirstChild("HumanoidRootPart") then
| |
| 4110 | hitt.Parent:findFirstChild("HumanoidRootPart").Anchored=false
| |
| 4111 | else | |
| 4112 | hitt.Anchored=false | |
| 4113 | end | |
| 4114 | if hitt.Parent:findFirstChildOfClass("Humanoid") then
| |
| 4115 | hitt.Parent:findFirstChildOfClass("Humanoid").PlatformStand=false
| |
| 4116 | end | |
| 4117 | end | |
| 4118 | a1.CanCollide=false | |
| 4119 | a2.CanCollide=false | |
| 4120 | for i=transp,1.1,.05 do | |
| 4121 | swait() | |
| 4122 | a1.Transparency=i | |
| 4123 | a2.Transparency=i | |
| 4124 | a3.Transparency=i | |
| 4125 | end | |
| 4126 | a1:Remove() | |
| 4127 | a2:Remove() | |
| 4128 | a3:Remove() | |
| 4129 | end),ref2,ref3,ref4) | |
| 4130 | end | |
| 4131 | end | |
| 4132 | local aaa=Root.CFrame | |
| 4133 | for i=1,15 do | |
| 4134 | swait() | |
| 4135 | howtohurt(aaa*CFrame.Angles(0,math.rad(math.random(-30,30)),0)*CFrame.new(0,-2.9,-7*i)) | |
| 4136 | end | |
| 4137 | end | |
| 4138 | for i=0,1,.05 do | |
| 4139 | swait() | |
| 4140 | RJ.C0=clerp(RJ.C0,CFrame.new(0.00523090363, -1.43928123, 0.500698686, 0.608538032, -0.0426248461, 0.792379022, -0.465371341, 0.789637804, 0.39987722, -0.642737091, -0.612091064, 0.460688204)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4141 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0926128924, 1.51767898, 0.131960645, 0.376569808, 0.156476825, -0.913077414, -0.0574150234, 0.987678826, 0.145582512, 0.924607277, -0.00239765272, 0.380914152)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4142 | RS.C0=clerp(RS.C0,CFrame.new(1.72637379, 0.409455806, -0.724692047, 0.0618917122, -0.811497867, 0.581068516, 0.993587911, 0.105286941, 0.0412091203, -0.0946200863, 0.574792027, 0.812810659)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4143 | LS.C0=clerp(LS.C0,CFrame.new(-1.93455589, 0.460196197, 0.217768371, 0.0587107539, 0.972400784, 0.225809187, -0.870207429, 0.160694644, -0.465743035, -0.489175141, -0.16915673, 0.855624735)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4144 | RH.C0=clerp(RH.C0,CFrame.new(0.7833848, -0.738480449, -0.797707796, 0.773465216, -0.17603536, -0.608903348, 0.0556301139, 0.975805998, -0.211443081, 0.631392956, 0.129670456, 0.764544725)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4145 | LH.C0=clerp(LH.C0,CFrame.new(-1.08285952, -1.81155241, -0.105949007, 0.620193243, 0.434748054, -0.652958214, -0.305137783, 0.90052408, 0.309754282, 0.722669542, 0.00713464618, 0.691156805)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4146 | end | |
| 4147 | hum.AutoRotate=true | |
| 4148 | elseif mode=="Nova" then | |
| 4149 | ||
| 4150 | elseif mode=="Celestial" then | |
| 4151 | local oring=Root.CFrame | |
| 4152 | local a=0 | |
| 4153 | Root.Anchored=true | |
| 4154 | for i=0,1,0.06 do | |
| 4155 | swait() | |
| 4156 | a=a+1.5-1.2*i | |
| 4157 | Root.CFrame=clerp(Root.CFrame,oring*CFrame.new(0,a,a),.4) | |
| 4158 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -1.03042574e-15, -1.61558713e-27, -1.03042574e-15, 1, 0, -1.61558713e-27, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(0+320*i),0,0),.4) | |
| 4159 | Neck.C0=clerp(Neck.C0,CFrame.new(-9.53674316e-07, 1.44887888, 0.189434841, 1, -4.97405222e-16, 1.34284554e-16, -5.15212872e-16, 0.965436339, -0.260638952, 0, 0.260638922, 0.965436339)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4160 | RS.C0=clerp(RS.C0,CFrame.new(1.51540422, -0.112202689, -0.307236254, 0.977620363, -0.154024214, -0.143300667, 0.0583290868, 0.85290426, -0.518798709, 0.202129334, 0.498829544, 0.842800617)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4161 | LS.C0=clerp(LS.C0,CFrame.new(-1.48163879, -0.0401576161, -0.25233984, 0.953122854, 0.224766985, 0.202574909, -0.10634549, 0.875607669, -0.471170723, -0.283279777, 0.42754069, 0.858464658)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4162 | RH.C0=clerp(RH.C0,CFrame.new(0.510826886, -1.95263195, -0.25531134, 0.99395287, -0.0868650526, -0.0671723336, 0.0699105337, 0.972328365, -0.222912818, 0.084676899, 0.216868788, 0.972521365)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4163 | LH.C0=clerp(LH.C0,CFrame.new(-0.569907069, -2.01232052, -0.401012838, 0.980895638, 0.0914456919, 0.171701759, -0.0345737338, 0.950523734, -0.30872187, -0.191437885, 0.296887517, 0.935526192)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4164 | end | |
| 4165 | oring=Root.CFrame | |
| 4166 | ||
| 4167 | local function celearrow(cf) | |
| 4168 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,.5) | |
| 4169 | ref.Anchored=true | |
| 4170 | ref.CFrame=cf | |
| 4171 | meshs(ref,"Mesh",Vector3.new(14, 14, 14),Enum.MeshType.FileMesh,"95920149") | |
| 4172 | coroutine.resume(coroutine.create(function(ar) | |
| 4173 | local sa1=ar.Position | |
| 4174 | local sa2=ar.CFrame | |
| 4175 | local h=particles(ar,.5,"Pastel light blue","262059101",.7,1,"Back",4,2,0,1,.5,.6,55,55,110,0,false) | |
| 4176 | local h2=particles(ar,.5,"Pastel yellow","262059101",.7,1,"Back",3,1,0,1,.5,1,55,55,22,44444,false) | |
| 4177 | for i=1,150 do | |
| 4178 | swait() | |
| 4179 | local hit,pos=rayCast(sa1,sa2.lookVector,8,chr) | |
| 4180 | ar.CFrame=CFrame.new(sa1,pos) | |
| 4181 | sa1=sa1+(sa2.lookVector*6) | |
| 4182 | --Effect(e,"Pastel light blue",ar.CFrame*CFrame.new(0,0,-5),8,8,8,-.2,-.2,-.2,.09,"Sphere",3,4,"") | |
| 4183 | Effect(e,"Pastel yellow",ar.CFrame,14,14,14,2,2,2,.1,"FileMesh",6,0,"95920149") | |
| 4184 | if hit then | |
| 4185 | break | |
| 4186 | end | |
| 4187 | end | |
| 4188 | h.Enabled=false | |
| 4189 | h2.Enabled=false | |
| 4190 | local h3=particles(ar,.5,"Pastel yellow","262059101",.7,1,"Back",6,8,0,1,.1,.3,55,55,160,44444,false,15) | |
| 4191 | ar.Transparency=1 | |
| 4192 | sounds(ar,"138499093",3.4,1.5) | |
| 4193 | Mdamage("None",ar,21,math.random(18,24),0,"")
| |
| 4194 | Effect(e,"Pastel yellow",ar.CFrame,6,6,6,15,15,15,.07,"Sphere",6,0,"") | |
| 4195 | Effect(e,"Pastel light blue",ar.CFrame,6,6,6,21,21,21,.09,"Sphere",6,0,"") | |
| 4196 | for i=1,4 do | |
| 4197 | Effect(e,"Pastel light blue",CFrame.new(ar.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),3,3,3,0,0,7,.06,"Sphere",3,4,"") | |
| 4198 | end | |
| 4199 | game:GetService("Debris"):AddItem(ar,2)
| |
| 4200 | end),ref) | |
| 4201 | end | |
| 4202 | ||
| 4203 | local num=0 | |
| 4204 | for i=0,1,0.01 do | |
| 4205 | swait() | |
| 4206 | num=num+1 | |
| 4207 | if num>=6 then | |
| 4208 | num=0 | |
| 4209 | CameraShake(900,Root,3,.2) | |
| 4210 | Effect(e,"Pastel light blue",LArm.CFrame*CFrame.new(0,-3,0),6,6,6,5,5,5,.12,"Sphere",6,0,"") | |
| 4211 | Effect(e,"Pastel yellow",LArm.CFrame*CFrame.new(0,-3,0),3,3,3,9,9,9,.16,"Sphere",6,0,"") | |
| 4212 | sounds(LArm,"1164367943",3.7,1.3) | |
| 4213 | celearrow(Root.CFrame*CFrame.new(0,0,-16)) | |
| 4214 | end | |
| 4215 | Root.CFrame=clerp(Root.CFrame,oring*CFrame.new(0,i*3,i*4)*CFrame.Angles(math.rad(-45+42*i),0,0),.25) | |
| 4216 | RJ.C0=clerp(RJ.C0,CFrame.new(-6.49018693e-05, -4.76209806e-07, 2.09120262e-05, 0.306682944, -5.15212872e-16, -0.951811731, 2.8554352e-05, 1, 9.20048933e-06, 0.951811731, -2.99999992e-05, 0.306682974)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 4217 | Neck.C0=clerp(Neck.C0,CFrame.new(4.18429991e-05, 1.50002265, -5.46508491e-05, 0.306682944, 2.8554352e-05, 0.951811731, -5.15212872e-16, 1, -2.99999992e-05, -0.951811731, 9.20048933e-06, 0.306682974)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 4218 | RS.C0=clerp(RS.C0,CFrame.new(1.55499983, 0.0829172209, -0.225308493, 0.955544353, -0.22471264, 0.190890878, 0.257678092, 0.951117814, -0.170226231, -0.143307716, 0.211847097, 0.966738701)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 4219 | LS.C0=clerp(LS.C0,CFrame.new(-2.03155708, 0.422283322, -0.460359871, 0.0835238397, 0.916782916, -0.390554786, -0.996068776, 0.0884140059, -0.00547694508, 0.0295093432, 0.389476895, 0.920563459)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 4220 | RH.C0=clerp(RH.C0,CFrame.new(0.743987381, -1.93200445, 0.0707701743, 0.947829247, -0.311371267, -0.0683203638, 0.318341911, 0.935750008, 0.151757732, 0.0166778266, -0.16558966, 0.986053824)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 4221 | LH.C0=clerp(LH.C0,CFrame.new(-0.341279, -1.98198199, -0.0178269409, 0.987468183, -0.113211483, 0.109953403, 0.112515971, 0.993570924, 0.0125298789, -0.110664994, -1.34855509e-06, 0.993857741)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 4222 | end | |
| 4223 | Root.Anchored=false | |
| 4224 | elseif mode=="Glacier" then | |
| 4225 | ||
| 4226 | elseif mode=="Desperation" then | |
| 4227 | hum.WalkSpeed=0 | |
| 4228 | hum.JumpPower=0 | |
| 4229 | hum.AutoRotate=false | |
| 4230 | for i=0,1,0.05 do | |
| 4231 | swait() | |
| 4232 | RJ.C0=clerp(RJ.C0,CFrame.new(-1.84441011e-18, 0.0393788926, -0.20208557, 1, -4.55779727e-17, -1.07890317e-17, -4.68375339e-17, 0.973107874, 0.230350122, 0, -0.230350137, 0.973107874)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4233 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.53330278, -0.175422966, 1, 0, 0, 0, 0.914100885, 0.405487001, 0, -0.405487001, 0.914100885)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4234 | RS.C0=clerp(RS.C0,CFrame.new(0.814132452, 0.956302881, -0.53983587, -0.0044469987, 0.430421919, 0.902616858, 0.713635445, -0.63093251, 0.304382473, 0.70050329, 0.645492971, -0.304358631)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4235 | LS.C0=clerp(LS.C0,CFrame.new(-0.73318696, 0.941449881, -0.57793659, -0.0272180028, -0.516513348, -0.855846465, -0.730756998, -0.573920488, 0.369607508, -0.682094991, 0.635475755, -0.361824751)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4236 | RH.C0=clerp(RH.C0,CFrame.new(0.559336305, -2.02994275, -0.268436939, 0.996671498, -0.0381174386, -0.0720624849, 0.0203841161, 0.972400784, -0.232425377, 0.0789330676, 0.230182812, 0.96994102)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4237 | LH.C0=clerp(LH.C0,CFrame.new(-0.51846379, -2.03068709, -0.271605551, 0.996257901, 0.0437802114, 0.0745221525, -0.0253015049, 0.972174883, -0.232886299, -0.0826443732, 0.230129287, 0.969644547)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4238 | end | |
| 4239 | ||
| 4240 | local reee=Root.Position | |
| 4241 | coroutine.resume(coroutine.create(function() | |
| 4242 | for i=0,270,90 do | |
| 4243 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 4244 | ref.Anchored=true | |
| 4245 | ref.CFrame=CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(i),0) | |
| 4246 | local h=particles(ref,.5,"Dark indigo","262059101",.7,1,"Back",40,21,0,1,1,1.5,55,55,40,0,false) | |
| 4247 | coroutine.resume(coroutine.create(function(aa) | |
| 4248 | for si=1,100 do | |
| 4249 | swait() | |
| 4250 | sounds(aa,"418703376",3.4,1.4) | |
| 4251 | aa.CFrame=aa.CFrame*CFrame.new(0,0,-12)*CFrame.Angles(0,math.rad(3.5),0) | |
| 4252 | Effect(e,"Mulberry",aa.CFrame,12,12,12,40,40,40,.08,"Sphere",6,0,"") | |
| 4253 | --Effect(e,"Dark indigo",aa.CFrame,72,72,72,-.1,-.1,-.1,.05,"Sphere",3,5,"") | |
| 4254 | Effect(e,"Dark indigo",aa.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),0.025,0.02,0.025,0.055,0,0.055,.06,"FileMesh",2,math.random(-12,12),"662585058") | |
| 4255 | Mdamage("None",aa,30,math.random(21,27),0,"")
| |
| 4256 | end | |
| 4257 | h.Enabled=false | |
| 4258 | local h=particles(ref,.5,"Dark indigo","262059101",.7,1,"Back",60,40,0,1,1,1.4,55,55,210,44444,false,15) | |
| 4259 | Effect(e,"Mulberry",CFrame.new(reee),12,12,12,40,40,40,.02,"Sphere",6,0,"") | |
| 4260 | Effect(e,"Dark indigo",CFrame.new(reee),12,12,12,70,70,70,.03,"Sphere",6,0,"") | |
| 4261 | game:GetService("Debris"):AddItem(aa,3)
| |
| 4262 | end),ref) | |
| 4263 | end | |
| 4264 | end)) | |
| 4265 | ||
| 4266 | for i=0,1,0.03 do | |
| 4267 | swait() | |
| 4268 | RJ.C0=clerp(RJ.C0,CFrame.new(8.43817779e-18, -0.180158466, 0.435632139, 1, -4.23927218e-17, 1.99151177e-17, -4.68375339e-17, 0.905101478, -0.425195694, 0, 0.425195694, 0.905101478)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4269 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.34341264, 0.250918895, 1, 0, 0, 0, 0.956577122, -0.291479617, 0, 0.291479617, 0.956577122)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4270 | RS.C0=clerp(RS.C0,CFrame.new(1.7175734, 0.503084421, 0.90634197, -0.151579976, -0.631688714, -0.760258436, 0.963282108, 0.0780389309, -0.256900221, 0.221610725, -0.771284282, 0.596665263)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4271 | LS.C0=clerp(LS.C0,CFrame.new(-1.58851504, 0.298645943, 0.707045138, 0.0778170079, 0.524349809, 0.847939789, -0.969272971, 0.238867104, -0.0587588698, -0.233355045, -0.817312658, 0.526825964)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4272 | RH.C0=clerp(RH.C0,CFrame.new(0.559335768, -1.82856464, 0.382448733, 0.996671498, -0.0381174386, -0.0720624849, 0.0650732592, 0.9044438, 0.42160061, 0.049106136, -0.424886674, 0.903913736)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4273 | LH.C0=clerp(LH.C0,CFrame.new(-0.518464148, -1.83111691, 0.380435944, 0.996257901, 0.0437802114, 0.0745221525, -0.0712320432, 0.904233754, 0.421055287, -0.0489515588, -0.424788028, 0.903968394)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4274 | end | |
| 4275 | hum.AutoRotate=true | |
| 4276 | elseif mode=="Saint" then | |
| 4277 | ||
| 4278 | elseif mode=="Dreary" then | |
| 4279 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 4280 | meshs(ref,"Mesh",Vector3.new(200,3,200),Enum.MeshType.Sphere,"") | |
| 4281 | ref.Anchored=true | |
| 4282 | ref.CFrame=CFrame.new(mouse.Hit.p)*CFrame.Angles(0,math.random(-120,120),0) | |
| 4283 | coroutine.resume(coroutine.create(function(r) | |
| 4284 | local tran=1 | |
| 4285 | local light=create("PointLight"){
| |
| 4286 | Parent=r, | |
| 4287 | Brightness=0, | |
| 4288 | Range=50, | |
| 4289 | } | |
| 4290 | sounds(r,"747292290",4,.9) | |
| 4291 | for i=1,40 do | |
| 4292 | swait() | |
| 4293 | tran=tran-.05 | |
| 4294 | r.Transparency=tran | |
| 4295 | light.Brightness=-(tran/2) | |
| 4296 | Effect(e,"Bright red",r.CFrame*CFrame.Angles(0,math.rad(doe*6.5),0)*CFrame.new(0,0,20),32,32,32,-1,-1,-1,.05,"Sphere",6,0,"") | |
| 4297 | Effect(e,"Bright red",r.CFrame*CFrame.Angles(0,math.rad(180+doe*6.5),0)*CFrame.new(0,0,20),32,32,32,-1,-1,-1,.05,"Sphere",6,0,"") | |
| 4298 | end | |
| 4299 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),"Bright red",Enum.Material.Neon,.3,0) | |
| 4300 | meshs(ref2,"Mesh",Vector3.new(0.38, 0.18, 0.5),Enum.MeshType.FileMesh,"2042096608") | |
| 4301 | ref2.Anchored=true | |
| 4302 | ref2.CFrame=r.CFrame*CFrame.new(0,-40,0) | |
| 4303 | local ref3=parts(e,"ref",Vector3.new(.2,.2,.2),"Fossil",Enum.Material.Neon,.5,.5) | |
| 4304 | meshs(ref3,"Mesh",Vector3.new(0.402, 0.202, 0.522),Enum.MeshType.FileMesh,"2042096608") | |
| 4305 | ref3.Anchored=true | |
| 4306 | ref3.CFrame=r.CFrame*CFrame.new(0,-40,0) | |
| 4307 | local rais=0 | |
| 4308 | tran=0 | |
| 4309 | sounds(r,"138499093",4,.9) | |
| 4310 | Mdamage("None",r,33,math.random(23,29),0,"")
| |
| 4311 | CameraShake(180,r,46,.06) | |
| 4312 | Effect(e,"Bright red",CFrame.new(r.Position)*CFrame.Angles(0,math.random(-120,120),0),3,1,3,4,2,4,.05,"FileMesh",2,math.random(9,14),"20329976") | |
| 4313 | Effect(e,"Fossil",CFrame.new(r.Position)*CFrame.Angles(0,math.random(-120,120),0),3,1,3,6,2,6,.05,"FileMesh",2,math.random(-14,-9),"20329976") | |
| 4314 | Effect(e,"Fossil",CFrame.new(r.Position),150,1,150,0,60,0,.08,"Sphere",6,0,"") | |
| 4315 | Effect(e,"Fossil",CFrame.new(r.Position),150,1,150,20,1,20,.06,"Sphere",6,0,"") | |
| 4316 | ||
| 4317 | for i=1,70 do | |
| 4318 | swait() | |
| 4319 | if rais<=50 then | |
| 4320 | rais=rais+6 | |
| 4321 | ref2.CFrame=r.CFrame*CFrame.new(0,-40+rais,0) | |
| 4322 | ref3.CFrame=r.CFrame*CFrame.new(0,-40+rais,0) | |
| 4323 | end | |
| 4324 | if i>=50 then | |
| 4325 | tran=tran+.05 | |
| 4326 | r.Transparency=tran | |
| 4327 | ref2.Transparency=tran | |
| 4328 | ref3.Transparency=tran | |
| 4329 | light.Brightness=light.Brightness-.05 | |
| 4330 | end | |
| 4331 | Effect(e,"Bright red",r.CFrame*CFrame.Angles(0,math.rad(doe*6.5),0)*CFrame.new(0,0,20),32,32,32,-1,-1,-1,.05,"Sphere",6,0,"") | |
| 4332 | Effect(e,"Bright red",r.CFrame*CFrame.Angles(0,math.rad(180+doe*6.5),0)*CFrame.new(0,0,20),32,32,32,-1,-1,-1,.05,"Sphere",6,0,"") | |
| 4333 | end | |
| 4334 | r:Remove() | |
| 4335 | ref2:Remove() | |
| 4336 | ref3:Remove() | |
| 4337 | --debris is fat | |
| 4338 | end),ref) | |
| 4339 | elseif mode=="Jade" then | |
| 4340 | local num=0 | |
| 4341 | local num2=0 | |
| 4342 | local haha=create("StringValue"){
| |
| 4343 | Name="RGSECasting", | |
| 4344 | Value="Casting", | |
| 4345 | Parent=chr} | |
| 4346 | repeat | |
| 4347 | swait() | |
| 4348 | num2=num2+1 | |
| 4349 | if num2>=4 then | |
| 4350 | num2=0 | |
| 4351 | num=num+1 | |
| 4352 | jadecrystal(CFrame.new(Root.Position)) | |
| 4353 | end | |
| 4354 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 1-.2*math.sin(sin/30), -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4355 | Neck.C0=clerp(Neck.C0,CFrame.new(-6.98863459e-17, 1.49210131, 0.0605422109, 1, -4.64417676e-17, 6.07591912e-18, -4.68375339e-17, 0.991550207, -0.129723296, 0, 0.129723296, 0.991550207)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4356 | RS.C0=clerp(RS.C0,CFrame.new(1.90491235, 0.601896942, -0.350771546, 0.393433154, -0.918377519, 0.0423454307, -0.16871196, -0.117400721, -0.978648782, 0.903740346, 0.377888709, -0.201130614)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4357 | LS.C0=clerp(LS.C0,CFrame.new(-2.02750111, 0.722337008, -0.183361918, 0.232044935, 0.950364649, -0.207273781, 0.109084979, -0.237171084, -0.965323985, -0.966569066, 0.201388091, -0.158704832)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4358 | RH.C0=clerp(RH.C0,CFrame.new(0.488124579, -1.36517763, -0.344080478, 0.995249093, -0.0430953763, -0.0873044282, 0.0601393059, 0.977297425, 0.203158021, 0.0765672028, -0.207443282, 0.975246131)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4359 | LH.C0=clerp(LH.C0,CFrame.new(-0.557774901, -1.92622006, 0.2765342, 0.997883737, 0.0545284674, 0.0354215279, -0.0615756102, 0.967481911, 0.245331153, -0.020892147, -0.246993065, 0.96879214)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4360 | until num>=20 | |
| 4361 | --900090447 | |
| 4362 | for i=0,1,0.1 do | |
| 4363 | swait() | |
| 4364 | local aim=CFrame.new(Root.Position,mouse.Hit.p) | |
| 4365 | local direction=aim.lookVector | |
| 4366 | local heed=math.atan2(direction.x,direction.z) | |
| 4367 | local heed=math.deg(heed) | |
| 4368 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.15) | |
| 4369 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.71264467e-18, 1-.2*math.sin(sin/30), -0.0710650831, 1, -4.59581945e-17, -9.03320768e-18, -4.68375339e-17, 0.981225789, 0.19286257, 0, -0.192862555, 0.981225789)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4370 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.5337683, -0.0574678034, 1, 0, 0, 0, 0.992413819, 0.122943237, 0, -0.122943252, 0.992413819)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4371 | RS.C0=clerp(RS.C0,CFrame.new(0.894479573, 0.476475298, -1.09457541, 0.968384087, 0.222055256, 0.113683254, 0.107854903, 0.0382404327, -0.993431032, -0.224943876, 0.974283874, 0.0130816847)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4372 | LS.C0=clerp(LS.C0,CFrame.new(-0.762406409, 0.552004874, -1.26365972, 0.886999726, -0.382395834, -0.258853346, -0.26056537, 0.0483190268, -0.964246333, 0.381231338, 0.92273438, -0.0567801595)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4373 | RH.C0=clerp(RH.C0,CFrame.new(0.488124013, -1.36516476, -0.344075322, 0.995248973, -0.0378293172, -0.0897137448, 0.0601408631, 0.963488579, 0.26090771, 0.0765682161, -0.265063524, 0.961186051)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4374 | LH.C0=clerp(LH.C0,CFrame.new(-0.557909966, -1.92726195, 0.273252249, 0.997883618, 0.0522608683, 0.0386924297, -0.0615783408, 0.950648308, 0.304098785, -0.0208904222, -0.30583784, 0.951854408)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4375 | end | |
| 4376 | haha.Name="RGSEShoot" | |
| 4377 | coroutine.resume(coroutine.create(function() | |
| 4378 | for _,asd in pairs(e:children()) do | |
| 4379 | if asd:IsA("BasePart") and asd.Name=="jjjj" then
| |
| 4380 | swait(4) | |
| 4381 | local find=asd:findFirstChild("ready")
| |
| 4382 | if find then | |
| 4383 | find:Remove() | |
| 4384 | end | |
| 4385 | end | |
| 4386 | end | |
| 4387 | haha:Remove() | |
| 4388 | end)) | |
| 4389 | hum.AutoRotate=false | |
| 4390 | repeat | |
| 4391 | swait() | |
| 4392 | local aim=CFrame.new(Root.Position,mouse.Hit.p) | |
| 4393 | local direction=aim.lookVector | |
| 4394 | local heed=math.atan2(direction.x,direction.z) | |
| 4395 | local heed=math.deg(heed) | |
| 4396 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.15) | |
| 4397 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.71264467e-18, 1-.2*math.sin(sin/30), -0.0710650831, 1, -4.59581945e-17, -9.03320768e-18, -4.68375339e-17, 0.981225789, 0.19286257, 0, -0.192862555, 0.981225789)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4398 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.5337683, -0.0574678034, 1, 0, 0, 0, 0.992413819, 0.122943237, 0, -0.122943252, 0.992413819)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4399 | RS.C0=clerp(RS.C0,CFrame.new(0.894479573, 0.476475298, -1.09457541, 0.968384087, 0.222055256, 0.113683254, 0.107854903, 0.0382404327, -0.993431032, -0.224943876, 0.974283874, 0.0130816847)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4400 | LS.C0=clerp(LS.C0,CFrame.new(-0.762406409, 0.552004874, -1.26365972, 0.886999726, -0.382395834, -0.258853346, -0.26056537, 0.0483190268, -0.964246333, 0.381231338, 0.92273438, -0.0567801595)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4401 | RH.C0=clerp(RH.C0,CFrame.new(0.488124013, -1.36516476, -0.344075322, 0.995248973, -0.0378293172, -0.0897137448, 0.0601408631, 0.963488579, 0.26090771, 0.0765682161, -0.265063524, 0.961186051)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4402 | LH.C0=clerp(LH.C0,CFrame.new(-0.557909966, -1.92726195, 0.273252249, 0.997883618, 0.0522608683, 0.0386924297, -0.0615783408, 0.950648308, 0.304098785, -0.0208904222, -0.30583784, 0.951854408)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4403 | until haha.Parent==nil | |
| 4404 | hum.AutoRotate=true | |
| 4405 | elseif mode=="Psychosis" then | |
| 4406 | hum.JumpPower=0 | |
| 4407 | sounds(LArm,"169380479",3.5,.8) | |
| 4408 | for i=0,1,0.05 do | |
| 4409 | swait() | |
| 4410 | Effect(e,modecolor[1],LArm.CFrame*CFrame.new(0,-1.5,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.2,.2,.2,-.01,0,-.01,.04,"FileMesh",6,0,"729867285") | |
| 4411 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.5,0),16,16,16,-.4,-.4,-.4,.07,"Sphere",6,0,"") | |
| 4412 | RJ.C0=clerp(RJ.C0,CFrame.new(-2.5331974e-07, -0.480601698, -0.181664601, 0.682596803, -2.034297e-08, 0.730795205, -0.265466362, 0.931689084, 0.247958004, -0.680873811, -0.363256931, 0.63596797)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4413 | Neck.C0=clerp(Neck.C0,CFrame.new(0.0702379346, 1.55677783, -0.0705450475, 0.708761215, 0.206569493, -0.67452693, 6.9585758e-07, 0.956167459, 0.292820781, 0.705448568, -0.207540512, 0.677694142)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4414 | RS.C0=clerp(RS.C0,CFrame.new(1.68399167, 0.161022872, -0.03163068, 0.900703192, -0.426410973, -0.0831104517, 0.401717871, 0.890323281, -0.214353457, 0.165397763, 0.159681901, 0.973213851)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4415 | LS.C0=clerp(LS.C0,CFrame.new(-1.89491117, 0.12194775, -0.494439662, 0.36714071, 0.851958215, -0.373329431, -0.927662671, 0.305944294, -0.214103177, -0.0681889206, 0.424929827, 0.902654469)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4416 | RH.C0=clerp(RH.C0,CFrame.new(0.966686428, -1.32845354, -0.617945194, 0.76636076, -0.319110781, -0.557547808, 0.0562339984, 0.897891462, -0.436610699, 0.639944494, 0.303248137, 0.706053674)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4417 | LH.C0=clerp(LH.C0,CFrame.new(-0.730598748, -2.00221658, 0.212963194, 0.928692937, 0.0935403183, -0.358858794, -2.44729836e-06, 0.967668295, 0.252226591, 0.370849639, -0.234240174, 0.898666978)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 4418 | end | |
| 4419 | for i=0,1,0.09 do | |
| 4420 | swait() | |
| 4421 | RJ.C0=clerp(RJ.C0,CFrame.new(-2.5331974e-07, -0.480601698, -0.181664601, 0.682596803, -2.034297e-08, 0.730795205, -0.265466362, 0.931689084, 0.247958004, -0.680873811, -0.363256931, 0.63596797)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4422 | Neck.C0=clerp(Neck.C0,CFrame.new(0.144904703, 1.50439429, -0.145557582, 0.70875752, 0.312923461, -0.632251263, 2.96921598e-06, 0.896234334, 0.443581283, 0.705452204, -0.314393491, 0.635211885)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4423 | RS.C0=clerp(RS.C0,CFrame.new(1.68399167, 0.161022872, -0.03163068, 0.900703192, -0.426410973, -0.0831104517, 0.401717871, 0.890323281, -0.214353457, 0.165397763, 0.159681901, 0.973213851)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4424 | LS.C0=clerp(LS.C0,CFrame.new(-1.87567973, 0.0835546181, -0.481071621, 0.302223265, 0.816151083, -0.492502451, -0.92487216, 0.376160979, 0.0558094308, 0.230809093, 0.438634872, 0.868519902)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4425 | RH.C0=clerp(RH.C0,CFrame.new(0.966686428, -1.32845354, -0.617945194, 0.76636076, -0.319110781, -0.557547808, 0.0562339984, 0.897891462, -0.436610699, 0.639944494, 0.303248137, 0.706053674)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4426 | LH.C0=clerp(LH.C0,CFrame.new(-0.730598748, -2.00221658, 0.212963194, 0.928692937, 0.0935403183, -0.358858794, -2.44729836e-06, 0.967668295, 0.252226591, 0.370849639, -0.234240174, 0.898666978)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4427 | end | |
| 4428 | hum.WalkSpeed=0 | |
| 4429 | CameraShake(150,Root,3,.08) | |
| 4430 | sounds(LArm,"200632211",3,.7) | |
| 4431 | Root.Velocity=Root.CFrame.lookVector*70 | |
| 4432 | local hitt=nil | |
| 4433 | for i=0,1,0.04 do | |
| 4434 | swait() | |
| 4435 | local vict=FindNearestTorso(LArm.Position,5) | |
| 4436 | if vict~=nil then | |
| 4437 | hitt=vict | |
| 4438 | end | |
| 4439 | if hitt then | |
| 4440 | sounds(hitt,"200632821",5,1) | |
| 4441 | break | |
| 4442 | end | |
| 4443 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.5,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),7,7,7,-.2,-.2,-.2,.03,"Brick",6,0,"") | |
| 4444 | RJ.C0=clerp(RJ.C0,CFrame.new(0.00434471667, -0.460727274, -0.181664705, 0.77229017, 0.347403467, -0.531863511, -0.275645882, 0.937557399, 0.212144911, 0.572352409, -0.0172314458, 0.819826782)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4445 | Neck.C0=clerp(Neck.C0,CFrame.new(0.0212990046, 1.42211962, 0.114097536, 0.755976319, -0.0813146085, 0.64952898, 0.335370958, 0.900248647, -0.277630657, -0.562162161, 0.427715331, 0.707837224)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4446 | RS.C0=clerp(RS.C0,CFrame.new(1.70795691, 0.357091874, -0.251699895, 0.420711368, -0.85938859, 0.290608495, 0.673999071, 0.510513186, 0.533949137, -0.607229292, -0.0287686288, 0.794005752)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4447 | LS.C0=clerp(LS.C0,CFrame.new(-1.29818749, 1.08005774, -0.834600806, 0.671849728, -0.0382439494, -0.739699602, -0.484057009, -0.778566837, -0.399402857, -0.560630798, 0.626395464, -0.541592181)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4448 | RH.C0=clerp(RH.C0,CFrame.new(1.36314142, -1.62312055, 0.148550749, 0.59394896, -0.670178115, 0.445068538, 0.201737627, 0.659617305, 0.724021435, -0.778798223, -0.34024474, 0.526979148)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4449 | LH.C0=clerp(LH.C0,CFrame.new(-0.630385876, -1.90959239, -0.521663368, 0.896856308, -0.0583353043, 0.438458502, 0.147242695, 0.974104583, -0.171580434, -0.417095244, 0.218442798, 0.88222146)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4450 | end | |
| 4451 | if hitt then | |
| 4452 | for i=0,1,0.05 do | |
| 4453 | swait() | |
| 4454 | if hitt.Parent:findFirstChildOfClass("Humanoid") then
| |
| 4455 | hitt.Parent:findFirstChildOfClass("Humanoid").PlatformStand=true
| |
| 4456 | end | |
| 4457 | if hitt.Parent:findFirstChild("HumanoidRootPart") then
| |
| 4458 | hitt.Parent:findFirstChild("HumanoidRootPart").Anchored=true
| |
| 4459 | hitt.Parent:findFirstChild("HumanoidRootPart").CFrame=LArm.CFrame*CFrame.new(0,-2.5,0)*CFrame.Angles(math.rad(90),0,0)
| |
| 4460 | else | |
| 4461 | hitt.Anchored=true | |
| 4462 | hitt.CFrame=LArm.CFrame*CFrame.new(0,-2.5,0)*CFrame.Angles(math.rad(90),0,0) | |
| 4463 | end | |
| 4464 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.5,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),7,7,7,-.2,-.2,-.2,.03,"Brick",6,0,"") | |
| 4465 | RJ.C0=clerp(RJ.C0,CFrame.new(1.59591436e-05, -0.818091214, -0.185011953, 0.235816941, -4.21673576e-08, 0.971797585, -0.525368392, 0.84127003, 0.127486259, -0.817544103, -0.540615141, 0.198385715)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4466 | Neck.C0=clerp(Neck.C0,CFrame.new(-8.22842121e-05, 1.50001562, -1.21444464e-06, 0.295483768, 0.214031219, -0.93106395, 4.26993711e-06, 0.974580944, 0.224036217, 0.955347836, -0.066203028, 0.287971944)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4467 | RS.C0=clerp(RS.C0,CFrame.new(1.05334628, 0.0439564884, -0.77137351, -0.282746971, 0.435026616, 0.854871929, 0.695451915, 0.706780434, -0.129646763, -0.660606563, 0.557865083, -0.502380133)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4468 | LS.C0=clerp(LS.C0,CFrame.new(-1.59430325, -0.134403512, 0.339531094, 0.600996673, 0.794533193, -0.0867174566, -0.673181474, 0.561697721, 0.480959833, 0.430847615, -0.230678678, 0.872443616)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4469 | RH.C0=clerp(RH.C0,CFrame.new(1.16785789, -0.733592868, -0.327578753, 0.417061388, -0.60422945, -0.678945124, 0.259525925, 0.795084476, -0.548166871, 0.871037543, 0.0524154007, 0.488412201)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4470 | LH.C0=clerp(LH.C0,CFrame.new(-0.77393508, -1.93024051, -0.12461105, 0.604508042, 0.319005042, -0.729935408, -0.191475764, 0.947638571, 0.255574316, 0.7732445, -0.0147318467, 0.633936942)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4471 | end | |
| 4472 | local spin=0 | |
| 4473 | local whilee=0 | |
| 4474 | local origlocat=Root.CFrame | |
| 4475 | local down=0 | |
| 4476 | local forward=0 | |
| 4477 | --[[hum.JumpPower=50 | |
| 4478 | hum.Jump=true | |
| 4479 | Root.Velocity=(Root.CFrame.lookVector*160)+(Root.CFrame.upVector*100)]] | |
| 4480 | hum.AutoRotate=false | |
| 4481 | for i=0,1,0.03 do | |
| 4482 | swait() | |
| 4483 | spin=spin+(7+60*i) | |
| 4484 | whilee=whilee+1 | |
| 4485 | if whilee>=6 then | |
| 4486 | whilee=0 | |
| 4487 | sounds(LArm,"200632211",3,.9) | |
| 4488 | end | |
| 4489 | if hitt.Parent:findFirstChild("HumanoidRootPart") then
| |
| 4490 | hitt.Parent:findFirstChild("HumanoidRootPart").Anchored=true
| |
| 4491 | hitt.Parent:findFirstChild("HumanoidRootPart").CFrame=LArm.CFrame*CFrame.new(0,-2.5,0)*CFrame.Angles(math.rad(90),0,0)
| |
| 4492 | else | |
| 4493 | hitt.Anchored=true | |
| 4494 | hitt.CFrame=LArm.CFrame*CFrame.new(0,-2.5,0)*CFrame.Angles(math.rad(90),0,0) | |
| 4495 | end | |
| 4496 | down=down+3-5*i | |
| 4497 | forward=forward-2 | |
| 4498 | Root.Anchored=true | |
| 4499 | Root.CFrame=origlocat*CFrame.new(0,down,forward) | |
| 4500 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.5,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),7,7,7,-.2,-.2,-.2,.03,"Brick",6,0,"") | |
| 4501 | RJ.C0=clerp(RJ.C0,CFrame.new(0.049807623, -0.0430870242, 2.81032681e-06, -0.0183650069, 0.999831378, -2.99949497e-05, -0.999831378, -0.0183650088, 3.05509493e-05, 2.99949406e-05, 3.05509602e-05, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,-math.rad(spin),0),.4) | |
| 4502 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0877914578, 1.49186337, -0.0812511295, 0.861281812, 0.0546066612, -0.505184948, 0.0335903242, 0.985915422, 0.163837597, 0.507016122, -0.158079654, 0.847316682)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4503 | RS.C0=clerp(RS.C0,CFrame.new(1.88179719, 0.429844737, 0.330829501, 0.140000701, -0.952205539, -0.271485806, 0.98131144, 0.0968768299, 0.166261494, -0.132014409, -0.289688855, 0.947972834)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4504 | LS.C0=clerp(LS.C0,CFrame.new(-1.93201923, 0.758484185, -0.432928532, -0.170377448, 0.913337529, -0.369846225, -0.984658957, -0.172151059, 0.0284757446, -0.0376614518, 0.369023979, 0.928656459)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4505 | RH.C0=clerp(RH.C0,CFrame.new(0.853881717, -1.89293325, 0.261379302, 0.896380305, -0.400676489, -0.189633921, 0.433469772, 0.881805003, 0.18580623, 0.0927719623, -0.248753577, 0.964113653)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4506 | LH.C0=clerp(LH.C0,CFrame.new(-0.247457102, -1.90141964, 0.16329506, 0.964121342, -0.263989151, -0.0279246997, 0.264931351, 0.950208187, 0.164060667, -0.0167759508, -0.165572509, 0.986054897)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4507 | end | |
| 4508 | local ground=false | |
| 4509 | local hits=nil | |
| 4510 | local poss | |
| 4511 | for i=1,200 do | |
| 4512 | swait() | |
| 4513 | spin=spin+67 | |
| 4514 | whilee=whilee+1 | |
| 4515 | if whilee>=6 then | |
| 4516 | whilee=0 | |
| 4517 | sounds(LArm,"200632211",3,.9) | |
| 4518 | end | |
| 4519 | if hitt.Parent:findFirstChildOfClass("Humanoid") then
| |
| 4520 | hitt.Parent:findFirstChildOfClass("Humanoid").PlatformStand=true
| |
| 4521 | end | |
| 4522 | if hitt.Parent:findFirstChild("HumanoidRootPart") then
| |
| 4523 | hitt.Parent:findFirstChild("HumanoidRootPart").Anchored=true
| |
| 4524 | hitt.Parent:findFirstChild("HumanoidRootPart").CFrame=LArm.CFrame*CFrame.new(0,-2.5,0)*CFrame.Angles(math.rad(90),0,0)
| |
| 4525 | else | |
| 4526 | hitt.Anchored=true | |
| 4527 | hitt.CFrame=LArm.CFrame*CFrame.new(0,-2.5,0)*CFrame.Angles(math.rad(90),0,0) | |
| 4528 | end | |
| 4529 | forward=forward-2 | |
| 4530 | down=down-2 | |
| 4531 | Root.Anchored=true | |
| 4532 | Root.CFrame=origlocat*CFrame.new(0,down,forward) | |
| 4533 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.5,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),7,7,7,-.2,-.2,-.2,.03,"Brick",6,0,"") | |
| 4534 | RJ.C0=clerp(RJ.C0,CFrame.new(0.049807623, -0.0430870242, 2.81032681e-06, -0.0183650069, 0.999831378, -2.99949497e-05, -0.999831378, -0.0183650088, 3.05509493e-05, 2.99949406e-05, 3.05509602e-05, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,-math.rad(spin),0),.4) | |
| 4535 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0877914578, 1.49186337, -0.0812511295, 0.861281812, 0.0546066612, -0.505184948, 0.0335903242, 0.985915422, 0.163837597, 0.507016122, -0.158079654, 0.847316682)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4536 | RS.C0=clerp(RS.C0,CFrame.new(1.88179719, 0.429844737, 0.330829501, 0.140000701, -0.952205539, -0.271485806, 0.98131144, 0.0968768299, 0.166261494, -0.132014409, -0.289688855, 0.947972834)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4537 | LS.C0=clerp(LS.C0,CFrame.new(-1.93201923, 0.758484185, -0.432928532, -0.170377448, 0.913337529, -0.369846225, -0.984658957, -0.172151059, 0.0284757446, -0.0376614518, 0.369023979, 0.928656459)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4538 | RH.C0=clerp(RH.C0,CFrame.new(0.853881717, -1.89293325, 0.261379302, 0.896380305, -0.400676489, -0.189633921, 0.433469772, 0.881805003, 0.18580623, 0.0927719623, -0.248753577, 0.964113653)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4539 | LH.C0=clerp(LH.C0,CFrame.new(-0.247457102, -1.90141964, 0.16329506, 0.964121342, -0.263989151, -0.0279246997, 0.264931351, 0.950208187, 0.164060667, -0.0167759508, -0.165572509, 0.986054897)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4540 | --hits,poss=rayCast(Root.Position,(CFrame.new(Root.Position,Root.Position-Vector3.new(0,1,0))).lookVector,7,chr) | |
| 4541 | hits,poss=rayCast(Root.Position,-Root.CFrame.upVector,7,chr) | |
| 4542 | ||
| 4543 | if hits~=nil then | |
| 4544 | if hits.Name~=hitt.Name and hits.Parent.Name~=hitt.Parent.Name and hits.Parent.Parent.Name~=hitt.Parent.Name then | |
| 4545 | ground=true | |
| 4546 | break | |
| 4547 | end | |
| 4548 | end | |
| 4549 | end | |
| 4550 | --until ground | |
| 4551 | hum.JumpPower=0 | |
| 4552 | Root.Anchored=false | |
| 4553 | if hitt.Parent:findFirstChild("HumanoidRootPart") then
| |
| 4554 | hitt.Parent:findFirstChild("HumanoidRootPart").Anchored=false
| |
| 4555 | else | |
| 4556 | hitt.Anchored=false | |
| 4557 | end | |
| 4558 | if hitt.Parent:findFirstChildOfClass("Humanoid") then
| |
| 4559 | hitt.Parent:findFirstChildOfClass("Humanoid").PlatformStand=false
| |
| 4560 | end | |
| 4561 | hitt.Velocity=(Root.CFrame.lookVector*math.random(50,90))+(Root.CFrame.upVector*math.random(70,90)) | |
| 4562 | Mdamage("None",hitt,2,math.random(80,95),0,"")
| |
| 4563 | local refzz=parts(e,"Part",Vector3.new(.2,.2,.2),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 4564 | refzz.Anchored=true | |
| 4565 | refzz.CFrame=CFrame.new(poss) | |
| 4566 | game:GetService("Debris"):AddItem(refzz,3)
| |
| 4567 | for i=1,math.random(8,12) do | |
| 4568 | local ground=parts(e,"Part",Vector3.new(math.random(20,30)/4,math.random(20,25)/10,math.random(20,30)/4),"Smoky grey",Enum.Material.SmoothPlastic,0,0) | |
| 4569 | ground.Anchored=true | |
| 4570 | ground.CanCollide=true | |
| 4571 | ground.BrickColor=hits.BrickColor | |
| 4572 | ground.Material=hits.Material | |
| 4573 | ground.CFrame=CFrame.new(poss)*CFrame.new(math.random(-500,500)/20,math.random(10,40)/100,math.random(-500,500)/20)*CFrame.Angles(math.random(-30,30),math.random(-360,360),math.random(-30,30)) | |
| 4574 | game:GetService("Debris"):AddItem(ground,3)
| |
| 4575 | end | |
| 4576 | sounds(refzz,"221920763",4,1.3) | |
| 4577 | sounds(refzz,"199145477",4.2,.7) | |
| 4578 | Effect(e,modecolor[2],refzz.CFrame*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),7,7,7,46,46,46,.06,"Brick",1,0,"") | |
| 4579 | Effect(e,modecolor[1],refzz.CFrame,9,9,9,47,47,47,.06,"Sphere",6,0,"") | |
| 4580 | Effect(e,modecolor[1],refzz.CFrame,3,7,3,7.5,0,7.5,.05,"FileMesh",2,math.random(-1,1)*17,"20329976") | |
| 4581 | Effect(e,modecolor[2],refzz.CFrame,3,4,3,6,0,6,.05,"FileMesh",2,math.random(-1,1)*17,"20329976") | |
| 4582 | for i=1,5 do | |
| 4583 | Effect(e,modecolor[1],CFrame.new(refzz.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),11,11,67,0,0,0,.03,"Sphere",4,math.random(-7,7),"",100,200,100) | |
| 4584 | end | |
| 4585 | Mdamage("None",refzz,45,math.random(25,35),0,"")
| |
| 4586 | CameraShake(150,Root,3,.05) | |
| 4587 | for i=0,1,0.04 do | |
| 4588 | swait() | |
| 4589 | RJ.C0=clerp(RJ.C0,CFrame.new(0.00809305906, -0.99579829, -0.386208475, 0.426722974, 0.0161827523, -0.904238164, 0.694252253, 0.634901226, 0.338990092, 0.579587519, -0.772423863, 0.259691864)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.6) | |
| 4590 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0565086305, 1.48401439, -0.0286925584, 0.452707946, -0.218223438, 0.864542842, 5.01051545e-06, 0.969589829, 0.24473615, -0.8916592, -0.110789634, 0.438941896)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.6) | |
| 4591 | RS.C0=clerp(RS.C0,CFrame.new(1.6967361, 0.96060437, -0.733733058, -0.343276531, -0.704653084, 0.620987535, 0.914292693, -0.402056754, 0.0491873547, 0.215012372, 0.584649563, 0.782275736)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.6) | |
| 4592 | LS.C0=clerp(LS.C0,CFrame.new(-1.70832443, 0.154020011, -0.606845737, 0.70312953, 0.653820515, 0.279513568, -0.0425386988, 0.43106705, -0.901316762, -0.709788501, 0.62185216, 0.330908597)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.6) | |
| 4593 | RH.C0=clerp(RH.C0,CFrame.new(-1.21300948, -0.782911062, -0.0905763134, 0.356464207, 0.804860711, 0.474481702, -0.124798208, 0.544308543, -0.829550326, -0.925937057, 0.236490309, 0.294471562)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.6) | |
| 4594 | LH.C0=clerp(LH.C0,CFrame.new(0.303691566, -1.94330668, -0.313968807, 0.468402803, 0.284407914, 0.836487472, -2.61999667e-05, 0.94677645, -0.321891844, -0.883515537, 0.150753036, 0.443479985)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.6) | |
| 4595 | end | |
| 4596 | end | |
| 4597 | hum.AutoRotate=true | |
| 4598 | elseif mode=="Conflagration" then | |
| 4599 | local doe2=0 | |
| 4600 | local doe3=0 | |
| 4601 | local flam=create("Sound"){
| |
| 4602 | Parent=Root, | |
| 4603 | SoundId="rbxassetid://925612654", | |
| 4604 | Volume=0, | |
| 4605 | PlaybackSpeed=1, | |
| 4606 | MaxDistance=66666666, | |
| 4607 | EmitterSize=70, | |
| 4608 | Name="ff", | |
| 4609 | Looped=true} | |
| 4610 | flam:Play() | |
| 4611 | for i=0,1,.01 do | |
| 4612 | swait() | |
| 4613 | doe2=doe2+1 | |
| 4614 | doe3=doe3+.01 | |
| 4615 | flam.Volume=0+3*i | |
| 4616 | Mdamage("None",Root,5+18*i,math.random(1,4),0.1,"")
| |
| 4617 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe2*(16*doe3)),0)*CFrame.new(0,-3,0+25*doe3)*CFrame.Angles(-math.rad(90),0,math.rad(math.random(-10,10))),14,14,14,-.32,-.32,-.32,.04,"Brick",7,math.random(6,9),"") | |
| 4618 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+doe2*(16*doe3)),0)*CFrame.new(0,-3,0+25*doe3)*CFrame.Angles(-math.rad(90),0,math.rad(math.random(-10,10))),14,14,14,-.32,-.32,-.32,.04,"Brick",7,math.random(6,9),"") | |
| 4619 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0),0.005+(doe3/11),0.01+(doe3/55),0.005+(doe3/11),0.004,0,0.004,.05,"FileMesh",2,math.random(-12,12),"662585058") | |
| 4620 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(doe2*(16*doe3)),0),.3) | |
| 4621 | Neck.C0=clerp(Neck.C0,CFrame.new(-6.89597977e-17, 1.47231925, 0.146465942, 1, -4.60215665e-17, 8.70459447e-18, -4.68375339e-17, 0.982578814, -0.185846552, 0, 0.185846567, 0.982578814)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4622 | RS.C0=clerp(RS.C0,CFrame.new(1.97143924, 0.520025611, -0.14842324, -0.017068008, -0.981362224, 0.191408142, 0.999854445, -0.0167465936, 0.00329687633, -2.99956318e-05, 0.191436544, 0.981505036)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4623 | LS.C0=clerp(LS.C0,CFrame.new(-1.99347508, 0.425046355, 0.124238819, 0.0411640182, 0.983868659, 0.174092263, -0.999152482, 0.040529117, 0.00720195705, 2.99745734e-05, -0.174241155, 0.984703064)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4624 | RH.C0=clerp(RH.C0,CFrame.new(0.31254667, -1.96351218, -0.0185402855, 0.97691673, 0.191410765, -0.0948460475, -0.190515056, 0.981510043, 0.0184960179, 0.0966326892, 5.31661499e-07, 0.995320201)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4625 | LH.C0=clerp(LH.C0,CFrame.new(-0.454886347, -1.33141136, -0.224726528, 0.981228352, -0.149459034, 0.121872909, 0.105624191, 0.945245028, 0.308796823, -0.161352232, -0.290127426, 0.94328773)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4626 | end | |
| 4627 | local function fireballlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll(cf) | |
| 4628 | local ref=parts(e,"ref",Vector3.new(.1,.1,.1),modecolor[1],Enum.Material.Neon,0,0) | |
| 4629 | ref.Anchored=true | |
| 4630 | ref.CFrame=cf | |
| 4631 | meshs(ref,"Mesh",Vector3.new(70,70,70),Enum.MeshType.Sphere,"") | |
| 4632 | local aaaaff=create("Sound"){
| |
| 4633 | Parent=ref, | |
| 4634 | SoundId="rbxassetid://1864705616", | |
| 4635 | Volume=3, | |
| 4636 | PlaybackSpeed=1, | |
| 4637 | MaxDistance=66666666, | |
| 4638 | EmitterSize=30, | |
| 4639 | Name="fire", | |
| 4640 | Looped=true} | |
| 4641 | ||
| 4642 | local fiare=particles(ref,.4,modecolor[1],"522606102",.5,1,"Top",8,.5,0,1,.3,.6,55,55,6,1000,false) | |
| 4643 | fiare.Speed=NRn(-6,6) | |
| 4644 | coroutine.resume(coroutine.create(function(f) | |
| 4645 | local sa1=f.Position | |
| 4646 | local sa2=f.CFrame | |
| 4647 | for i=1,200 do | |
| 4648 | swait() | |
| 4649 | local hit,pos=rayCast(sa1,-sa2.lookVector,25,chr) | |
| 4650 | f.CFrame=CFrame.new(pos) | |
| 4651 | sa1=sa1+(-sa2.lookVector*3) | |
| 4652 | if hit~=nil then | |
| 4653 | break | |
| 4654 | end | |
| 4655 | end | |
| 4656 | aaaaff:Remove() | |
| 4657 | fiare.Enabled=false | |
| 4658 | f.Transparency=1 | |
| 4659 | Effect(e,"Br. yellowish orange",f.CFrame,34,34,34,22,22,22,.04,"Sphere",6,0,"") | |
| 4660 | Effect(e,"Neon orange",CFrame.new(f.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.014,0,0.014,.03,"FileMesh",2,math.random(-42,42),"662585058") | |
| 4661 | Effect(e,"Neon orange",CFrame.new(f.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.024,0,0.024,.02,"FileMesh",2,math.random(-42,42),"662585058") | |
| 4662 | game:GetService("Debris"):AddItem(f,3)
| |
| 4663 | local fiare2=particles(ref,.4,"Br. yellowish orange","522606102",.5,1,"Top",8,40,0,1,.5,.7,55,55,150,1000,false,15) | |
| 4664 | fiare2.Rate=66666 | |
| 4665 | local fiare3=particles(ref,.4,"Neon orange","522606102",.5,1,"Top",8,40,0,1,.5,.7,55,55,150,1000,false,15) | |
| 4666 | fiare3.Rate=66666 | |
| 4667 | Mdamage("None",f,30,math.random(21,32),0,"")
| |
| 4668 | sounds(f,"472579737",4,.7) | |
| 4669 | ||
| 4670 | end),ref) | |
| 4671 | end | |
| 4672 | ||
| 4673 | local dela=0 | |
| 4674 | for i=0,1,.005 do | |
| 4675 | swait() | |
| 4676 | doe2=doe2+1 | |
| 4677 | dela=dela+1 | |
| 4678 | if dela>=5 then | |
| 4679 | dela=0 | |
| 4680 | CameraShake(450,Root,3,.15) | |
| 4681 | fireballlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll(CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe2*4.4),0)) | |
| 4682 | fireballlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll(CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+doe2*4.4),0)) | |
| 4683 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.004,.01,.004,0.003,0,0.003,.03,"FileMesh",2,math.random(-32,32),"662585058") | |
| 4684 | Effect(e,modecolor[1],CFrame.new(Root.Position),14,14,14,32,32,32,.15,"Sphere",6,0,"") | |
| 4685 | sounds(Root,"153896369",3.4,1.1) | |
| 4686 | end | |
| 4687 | Mdamage("None",Root,23,math.random(1,4),0.1,"")
| |
| 4688 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe2*(16*doe3)),0)*CFrame.new(0,-3,0+25*doe3)*CFrame.Angles(-math.rad(90),0,math.rad(math.random(-10,10))),14,14,14,-.32,-.32,-.32,.04,"Brick",7,math.random(6,9),"") | |
| 4689 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+doe2*(16*doe3)),0)*CFrame.new(0,-3,0+25*doe3)*CFrame.Angles(-math.rad(90),0,math.rad(math.random(-10,10))),14,14,14,-.32,-.32,-.32,.04,"Brick",7,math.random(6,9),"") | |
| 4690 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0),0.005+(doe3/11),0.01+(doe3/55),0.005+(doe3/11),0.004,0,0.004,.05,"FileMesh",2,math.random(-12,12),"662585058") | |
| 4691 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(doe2*(16*doe3)),0),.3) | |
| 4692 | Neck.C0=clerp(Neck.C0,CFrame.new(-6.89597977e-17, 1.47231925, 0.146465942, 1, -4.60215665e-17, 8.70459447e-18, -4.68375339e-17, 0.982578814, -0.185846552, 0, 0.185846567, 0.982578814)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4693 | RS.C0=clerp(RS.C0,CFrame.new(1.97143924, 0.520025611, -0.14842324, -0.017068008, -0.981362224, 0.191408142, 0.999854445, -0.0167465936, 0.00329687633, -2.99956318e-05, 0.191436544, 0.981505036)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4694 | LS.C0=clerp(LS.C0,CFrame.new(-1.99347508, 0.425046355, 0.124238819, 0.0411640182, 0.983868659, 0.174092263, -0.999152482, 0.040529117, 0.00720195705, 2.99745734e-05, -0.174241155, 0.984703064)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4695 | RH.C0=clerp(RH.C0,CFrame.new(0.31254667, -1.96351218, -0.0185402855, 0.97691673, 0.191410765, -0.0948460475, -0.190515056, 0.981510043, 0.0184960179, 0.0966326892, 5.31661499e-07, 0.995320201)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4696 | LH.C0=clerp(LH.C0,CFrame.new(-0.454886347, -1.33141136, -0.224726528, 0.981228352, -0.149459034, 0.121872909, 0.105624191, 0.945245028, 0.308796823, -0.161352232, -0.290127426, 0.94328773)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4697 | end | |
| 4698 | for i=0,1,.01 do | |
| 4699 | swait() | |
| 4700 | doe2=doe2+1 | |
| 4701 | doe3=doe3-.01 | |
| 4702 | flam.Volume=3-3*i | |
| 4703 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe2*(16*doe3)),0)*CFrame.new(0,-3,0+25*doe3)*CFrame.Angles(-math.rad(90),0,math.rad(math.random(-10,10))),14,14,14,-.32,-.32,-.32,.04,"Brick",7,math.random(6,9),"") | |
| 4704 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+doe2*(16*doe3)),0)*CFrame.new(0,-3,0+25*doe3)*CFrame.Angles(-math.rad(90),0,math.rad(math.random(-10,10))),14,14,14,-.32,-.32,-.32,.04,"Brick",7,math.random(6,9),"") | |
| 4705 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0),0.005+(doe3/11),0.01+(doe3/55),0.005+(doe3/11),0.004,0,0.004,.05,"FileMesh",2,math.random(-12,12),"662585058") | |
| 4706 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(doe2*(16*doe3)),0),.3) | |
| 4707 | Neck.C0=clerp(Neck.C0,CFrame.new(-6.89597977e-17, 1.47231925, 0.146465942, 1, -4.60215665e-17, 8.70459447e-18, -4.68375339e-17, 0.982578814, -0.185846552, 0, 0.185846567, 0.982578814)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4708 | RS.C0=clerp(RS.C0,CFrame.new(1.97143924, 0.520025611, -0.14842324, -0.017068008, -0.981362224, 0.191408142, 0.999854445, -0.0167465936, 0.00329687633, -2.99956318e-05, 0.191436544, 0.981505036)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4709 | LS.C0=clerp(LS.C0,CFrame.new(-1.99347508, 0.425046355, 0.124238819, 0.0411640182, 0.983868659, 0.174092263, -0.999152482, 0.040529117, 0.00720195705, 2.99745734e-05, -0.174241155, 0.984703064)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4710 | RH.C0=clerp(RH.C0,CFrame.new(0.31254667, -1.96351218, -0.0185402855, 0.97691673, 0.191410765, -0.0948460475, -0.190515056, 0.981510043, 0.0184960179, 0.0966326892, 5.31661499e-07, 0.995320201)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4711 | LH.C0=clerp(LH.C0,CFrame.new(-0.454886347, -1.33141136, -0.224726528, 0.981228352, -0.149459034, 0.121872909, 0.105624191, 0.945245028, 0.308796823, -0.161352232, -0.290127426, 0.94328773)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 4712 | end | |
| 4713 | flam:Remove() | |
| 4714 | elseif mode=="Lullaby" then | |
| 4715 | hum.WalkSpeed=0 | |
| 4716 | hum.JumpPower=0 | |
| 4717 | hum.AutoRotate=false | |
| 4718 | sounds(Root,"588735023",3,.8) | |
| 4719 | local ref=parts(e,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 4720 | ref.Anchored=true | |
| 4721 | ref.CFrame=CFrame.new(Root.Position)*CFrame.new(0,-3,0)*CFrame.Angles(0,0,math.rad(90)) | |
| 4722 | RLockEffect(e,modecolor[1],ref.CFrame,ref,1,210,210,0,4,4,.02,"Cylinder",6,0,"") | |
| 4723 | local ref2=parts(e,"ref",Vector3.new(.1,.1,.1),"Smoky grey",Enum.Material.SmoothPlastic,0,1) | |
| 4724 | ref2.Anchored=true | |
| 4725 | ref2.CFrame=CFrame.new(Root.Position+Vector3.new(math.random(-250,250)/100,math.random(-100,100)/100,math.random(-250,250)/100)) | |
| 4726 | local wat=math.random(1,3) | |
| 4727 | if wat==1 then | |
| 4728 | damagegui(ref2,"Sleep, my children...",.008) | |
| 4729 | elseif wat==2 then | |
| 4730 | damagegui(ref2,"Look at you, you're very sleepy...",.008) | |
| 4731 | elseif wat==3 then | |
| 4732 | damagegui(ref2,"I'll make you sleep well...",.008) | |
| 4733 | end | |
| 4734 | for i=0,1,0.02 do | |
| 4735 | swait() | |
| 4736 | Mdamage("None",Root,23-22*i,math.random(1,4),0.1,"")
| |
| 4737 | ref.CFrame=CFrame.new(Root.Position)*CFrame.new(0,-3,0)*CFrame.Angles(0,0,math.rad(90)) | |
| 4738 | Effect(e,modecolor[2],RArm.CFrame*CFrame.new(0,-1.3,0),8,8,8,-.4,-.4,-.4,.08,"Sphere",6,0,"") | |
| 4739 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.3,0),8,8,8,-.4,-.4,-.4,.08,"Sphere",6,0,"") | |
| 4740 | Effect(e,modecolor[1],RArm.CFrame*CFrame.new(0,-1.3,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),4,4,4,-.3,-.3,-.3,.07,"Sphere",3,.3,"") | |
| 4741 | Effect(e,modecolor[1],LArm.CFrame*CFrame.new(0,-1.3,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),4,4,4,-.3,-.3,-.3,.07,"Sphere",3,.3,"") | |
| 4742 | RJ.C0=clerp(RJ.C0,CFrame.new(4.14909593e-17, -0.885848522, -0.204119027, 1, -4.27553446e-17, -1.91242023e-17, -4.68375339e-17, 0.912843645, 0.40830934, 0, -0.40830934, 0.912843645)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4743 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.3060528, 0.299719036, 1, 0, 0, 0, 0.867858171, -0.496812046, 0, 0.496812046, 0.867858171)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4744 | RS.C0=clerp(RS.C0,CFrame.new(1.48544645, 1.39449525, 0.0995207876, 0.994540513, -0.0621472932, -0.0838266909, -0.0386692137, -0.965610385, 0.257101595, -0.0969220996, -0.252456456, -0.962741852)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4745 | LS.C0=clerp(LS.C0,CFrame.new(-1.60332191, 1.18335962, 0.249968797, 0.981593251, 0.190980688, 0.00107636943, 0.178433627, -0.919084609, 0.351347476, 0.0680898577, -0.344688207, -0.936244607)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4746 | RH.C0=clerp(RH.C0,CFrame.new(0.568739772, -0.812144816, -0.905020952, 0.995555997, -0.0557800196, -0.0758741945, 0.0134156533, 0.88149029, -0.472011626, 0.0932111815, 0.468896151, 0.878321171)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4747 | LH.C0=clerp(LH.C0,CFrame.new(-0.58529526, -1.83054256, 0.556173265, 0.994941652, 0.0782623664, 0.0629779026, -0.100154236, 0.821296453, 0.561641693, -0.00776812807, -0.56510812, 0.824980378)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4748 | end | |
| 4749 | sounds(Root,"588735155",3,1.2) | |
| 4750 | ref:Remove() | |
| 4751 | MStatus("Sleep",Root,50)
| |
| 4752 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.new(0,-3,0)*CFrame.Angles(0,0,math.rad(90)),2,510,510,0,-2,-2,.015,"Cylinder",6,0,"") | |
| 4753 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.new(0,-3,0)*CFrame.Angles(0,0,math.rad(90)),1,510,510,0,-4,-4,.01,"Cylinder",6,0,"") | |
| 4754 | for i=0,1,0.015 do | |
| 4755 | swait() | |
| 4756 | if i<=.4 then | |
| 4757 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,math.random(2,14),math.random(-50,50))*CFrame.Angles(math.rad(90),0,0),8,8,8,-.2,-.2,-.2,.03,"Brick",7,math.random(2,9),"") | |
| 4758 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,math.random(2,14),math.random(-50,50))*CFrame.Angles(math.rad(90),0,0),8,8,8,-.2,-.2,-.2,.03,"Brick",7,math.random(2,9),"") | |
| 4759 | Effect(e,modecolor[2],RArm.CFrame*CFrame.new(0,-1.3,0),8,8,8,-.4,-.4,-.4,.08,"Sphere",6,0,"") | |
| 4760 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.3,0),8,8,8,-.4,-.4,-.4,.08,"Sphere",6,0,"") | |
| 4761 | Effect(e,modecolor[1],RArm.CFrame*CFrame.new(0,-1.3,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),4,4,4,-.3,-.3,-.3,.07,"Sphere",3,.3,"") | |
| 4762 | Effect(e,modecolor[1],LArm.CFrame*CFrame.new(0,-1.3,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),4,4,4,-.3,-.3,-.3,.07,"Sphere",3,.3,"") | |
| 4763 | end | |
| 4764 | RJ.C0=clerp(RJ.C0,CFrame.new(4.14909593e-17, -0.885848522, -0.204119027, 1, -4.27553446e-17, -1.91242023e-17, -4.68375339e-17, 0.912843645, 0.40830934, 0, -0.40830934, 0.912843645)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4765 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.52483213, -0.189938188, 1, 0, 0, 0, 0.933961034, 0.357374847, 0, -0.357374847, 0.933961034)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.15) | |
| 4766 | RS.C0=clerp(RS.C0,CFrame.new(1.44582772, 0.0405168235, -0.485600412, 0.997182488, -0.0430896915, 0.06140453, 0.0692964792, 0.842600465, -0.534062326, -0.0287269019, 0.536812663, 0.843212306)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.15) | |
| 4767 | LS.C0=clerp(LS.C0,CFrame.new(-1.47377074, -0.0407868624, -0.460009247, 0.993525982, 0.100577563, 0.0528244078, -0.0494173877, 0.801297188, -0.596222043, -0.102294609, 0.589751542, 0.801079929)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.15) | |
| 4768 | RH.C0=clerp(RH.C0,CFrame.new(0.568739772, -0.812144816, -0.905020952, 0.995555997, -0.0557800196, -0.0758741945, 0.0134156533, 0.88149029, -0.472011626, 0.0932111815, 0.468896151, 0.878321171)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4769 | LH.C0=clerp(LH.C0,CFrame.new(-0.58529526, -1.83054256, 0.556173265, 0.994941652, 0.0782623664, 0.0629779026, -0.100154236, 0.821296453, 0.561641693, -0.00776812807, -0.56510812, 0.824980378)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 4770 | end | |
| 4771 | hum.AutoRotate=true | |
| 4772 | elseif mode=="Somnambulist" then | |
| 4773 | Effect(e,"Alder",CFrame.new(Root.Position),10,10,10,26,26,26,.06,"Sphere",6,0,"") | |
| 4774 | local ref4=parts(e,modecolor[1],Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,0) | |
| 4775 | ref4.Anchored=true | |
| 4776 | ref4.CFrame=Root.CFrame | |
| 4777 | meshs(ref4,"Mesh",Vector3.new(20,20,20),Enum.MeshType.Sphere,"") | |
| 4778 | coroutine.resume(coroutine.create(function() | |
| 4779 | local reee=Root.CFrame | |
| 4780 | for i=1,50 do | |
| 4781 | swait() | |
| 4782 | ref4.CFrame=clerp(ref4.CFrame,reee*CFrame.new(0,0,-30),.06) | |
| 4783 | end | |
| 4784 | sounds(ref4,"677958398",3,2) | |
| 4785 | local ref1=parts(e,modecolor[1],Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 4786 | ref1.Anchored=true | |
| 4787 | ref1.CFrame=CFrame.new(Root.Position) | |
| 4788 | local ref2=parts(e,modecolor[1],Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 4789 | ref2.Anchored=true | |
| 4790 | ref2.CFrame=CFrame.new(Root.Position) | |
| 4791 | local ref3=parts(e,modecolor[1],Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 4792 | ref3.Anchored=true | |
| 4793 | ref3.CFrame=CFrame.new(Root.Position) | |
| 4794 | local spini=0 | |
| 4795 | local hh1=particles(ref1,.8,"Pastel violet","262059101",.7,1,"Front",5,1,0,1,.6,.9,55,55,70,1,true) | |
| 4796 | local hh2=particles(ref2,.8,"Pastel violet","262059101",.7,1,"Front",5,1,0,1,.6,.9,55,55,70,1,true) | |
| 4797 | local hh3=particles(ref3,.8,"Pastel violet","262059101",.7,1,"Front",5,1,0,1,.6,.9,55,55,70,1,true) | |
| 4798 | local hh4=particles(ref1,.8,"Alder","262059101",.7,1,"Front",4,2,0,1,.5,1.5,55,55,12,44444,false) | |
| 4799 | local hh5=particles(ref2,.8,"Alder","262059101",.7,1,"Front",4,2,0,1,.5,1.5,55,55,12,44444,false) | |
| 4800 | local hh6=particles(ref3,.8,"Alder","262059101",.7,1,"Front",4,2,0,1,.5,1.5,55,55,12,44444,false) | |
| 4801 | for i=1,100 do | |
| 4802 | swait() | |
| 4803 | spini=spini+3+(i/8) | |
| 4804 | ref1.CFrame=clerp(ref1.CFrame,CFrame.new(ref4.Position)*CFrame.Angles(0,math.rad(spini),0)*CFrame.new(0,0,-9),.3) | |
| 4805 | ref2.CFrame=clerp(ref2.CFrame,CFrame.new(ref4.Position)*CFrame.Angles(0,math.rad(120+spini),0)*CFrame.new(0,0,-9),.3) | |
| 4806 | ref3.CFrame=clerp(ref3.CFrame,CFrame.new(ref4.Position)*CFrame.Angles(0,math.rad(240+spini),0)*CFrame.new(0,0,-9),.3) | |
| 4807 | Mdamage("None",ref4,45,math.random(13,17),0.1,"")
| |
| 4808 | end | |
| 4809 | ||
| 4810 | sounds(ref4,"588718963",5,.9) | |
| 4811 | --sounds(ref4,"588734767",2.2,.7) | |
| 4812 | local hh8=particles(ref1,.8,"Pastel violet","262059101",.7,1,"Front",5,1,0,1,.6,.9,55,55,50,1,false) | |
| 4813 | local hh9=particles(ref2,.8,"Pastel violet","262059101",.7,1,"Front",5,1,0,1,.6,.9,55,55,50,1,false) | |
| 4814 | local hh10=particles(ref3,.8,"Pastel violet","262059101",.7,1,"Front",5,1,0,1,.6,.9,55,55,50,1,false) | |
| 4815 | for i=1,200 do | |
| 4816 | swait() | |
| 4817 | spini=spini+17 | |
| 4818 | ref1.CFrame=clerp(ref1.CFrame,CFrame.new(ref4.Position)*CFrame.Angles(0,math.rad(spini),0)*CFrame.new(0,0,-9),.7) | |
| 4819 | ref2.CFrame=clerp(ref2.CFrame,CFrame.new(ref4.Position)*CFrame.Angles(0,math.rad(120+spini),0)*CFrame.new(0,0,-9),.7) | |
| 4820 | ref3.CFrame=clerp(ref3.CFrame,CFrame.new(ref4.Position)*CFrame.Angles(0,math.rad(240+spini),0)*CFrame.new(0,0,-9),.7) | |
| 4821 | ref4.CFrame=clerp(ref4.CFrame,ref4.CFrame*CFrame.new(0,0,0-(i/10)),.3) | |
| 4822 | Mdamage("None",ref4,45,math.random(13,17),0.1,"")
| |
| 4823 | end | |
| 4824 | Effect(e,"Alder",CFrame.new(ref4.Position),10,10,10,36,36,36,.05,"Sphere",6,0,"") | |
| 4825 | Effect(e,"Pastel violet",CFrame.new(ref4.Position),6,6,6,36,36,36,.06,"Sphere",6,0,"") | |
| 4826 | Effect(e,"Alder",CFrame.new(ref4.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,2,5,5,.3,.02,"FileMesh",6,0,"3270017") | |
| 4827 | Effect(e,"Pastel violet",CFrame.new(ref4.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.03,.01,0.02,0,0.02,.02,"FileMesh",2,math.random(-42,42),"662585058") | |
| 4828 | Effect(e,"Alder",CFrame.new(ref4.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.03,.01,0.03,0,0.03,.01,"FileMesh",2,math.random(-42,42),"662585058") | |
| 4829 | sounds(ref4,"233091161",3,1.3) | |
| 4830 | particles(ref4,1,"Alder","262059101",.6,1,"Front",40,60,0,1,1,2,55,55,212,44444,false,20) | |
| 4831 | particles(ref4,1,"Pastel violet","262059101",.6,1,"Front",40,60,0,1,1,2,55,55,212,44444,false,20) | |
| 4832 | Mdamage("None",ref4,65,math.random(16,21),0,"")
| |
| 4833 | hh1.Enabled=false | |
| 4834 | hh2.Enabled=false | |
| 4835 | hh3.Enabled=false | |
| 4836 | hh4.Enabled=false | |
| 4837 | hh5.Enabled=false | |
| 4838 | hh6.Enabled=false | |
| 4839 | hh8.Enabled=false | |
| 4840 | hh9.Enabled=false | |
| 4841 | hh10.Enabled=false | |
| 4842 | ref4.Transparency=1 | |
| 4843 | game:GetService("Debris"):AddItem(ref1,2)
| |
| 4844 | game:GetService("Debris"):AddItem(ref2,2)
| |
| 4845 | game:GetService("Debris"):AddItem(ref3,2)
| |
| 4846 | game:GetService("Debris"):AddItem(ref4,3)
| |
| 4847 | end)) | |
| 4848 | ||
| 4849 | elseif mode=="Amativeness" then | |
| 4850 | ||
| 4851 | elseif mode=="Nil" then | |
| 4852 | ||
| 4853 | elseif mode=="Wither" then | |
| 4854 | hum.AutoRotate=false | |
| 4855 | for i=0,1,0.07 do | |
| 4856 | swait() | |
| 4857 | local aim=CFrame.new(Root.Position,mouse.Hit.p) | |
| 4858 | local direction=aim.lookVector | |
| 4859 | local heed=math.atan2(direction.x,direction.z) | |
| 4860 | local heed=math.deg(heed) | |
| 4861 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.15) | |
| 4862 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.07032387e-05, 1-.2*math.sin(sin/30), 3.66327949e-05, 0.365233898, -3.60649011e-15, -0.930915773, 2.79274718e-05, 1, 1.09570165e-05, 0.930915773, -2.99999992e-05, 0.365233898)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4863 | Neck.C0=clerp(Neck.C0,CFrame.new(1.87964433e-05, 1.50002456, -2.13099647e-05, 0.365233898, 2.79274718e-05, 0.930915773, -3.60649011e-15, 1, -2.99999992e-05, -0.930915773, 1.09570165e-05, 0.365233898)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4864 | RS.C0=clerp(RS.C0,CFrame.new(1.61391425, 0.0711705685, -0.342857212, 0.908895373, -0.369885743, 0.1925973, 0.401635081, 0.900713503, -0.165543348, -0.112242907, 0.227815449, 0.967213392)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4865 | LS.C0=clerp(LS.C0,CFrame.new(-1.92762482, 0.430832565, -0.291689336, 0.0453204662, 0.927795708, -0.370325655, -0.996603668, 0.0675055012, 0.0471605733, 0.0687543899, 0.366930544, 0.927704096)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4866 | RH.C0=clerp(RH.C0,CFrame.new(0.590745747, -1.52371395, -0.13567847, 0.981111169, -0.169943064, 0.0924131274, 0.14146705, 0.956155479, 0.256425232, -0.131939024, -0.238508269, 0.962136209)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4867 | LH.C0=clerp(LH.C0,CFrame.new(-0.553898275, -2.04400301, 0.340089291, 0.939236581, -0.00486665964, 0.343236327, -0.0787200257, 0.97019881, 0.229166746, -0.334122717, -0.242261291, 0.910863101)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4868 | end | |
| 4869 | Effect(e,modecolor[2],CFrame.new(Torso.Position),6,6,6,34,34,34,.05,"Sphere",6,0,"") | |
| 4870 | local ref=parts(e,modecolor[1],Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,0) | |
| 4871 | local refmesh=meshs(ref,"Mesh",Vector3.new(11,60,60),Enum.MeshType.Cylinder,"") | |
| 4872 | ref.Anchored=true | |
| 4873 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 4874 | ref2.Anchored=true | |
| 4875 | local asdsd=particles(ref2,.7,modecolor[1],"262059101",.8,1,"Back",30,15,0,1,.8,1,55,55,250,44444,false) | |
| 4876 | ||
| 4877 | sounds(ref,"231917813",3,1.5) | |
| 4878 | sounds(Root,"231917813",3,1.5) | |
| 4879 | local h=0 | |
| 4880 | ||
| 4881 | ||
| 4882 | CameraShake(350,Root,3,.02) | |
| 4883 | for i=0,1,0.02 do | |
| 4884 | swait() | |
| 4885 | local start=(LArm.CFrame*CFrame.new(0,-1.8,0)).p | |
| 4886 | local hitt=mouse.Hit.p | |
| 4887 | ref2.CFrame=CFrame.new(hitt) | |
| 4888 | Mdamage("None",ref2,25-23*i,math.random(13,16),0.1,"")
| |
| 4889 | ref.CFrame=CFrame.new((start+hitt)/2,hitt)*CFrame.Angles(0,math.rad(90),0) | |
| 4890 | refmesh.Scale=Vector3.new(((start-hitt).magnitude)*5,60-61*i,60-61*i) | |
| 4891 | h=h+1 | |
| 4892 | if h>=3 then | |
| 4893 | h=0 | |
| 4894 | Effect(e,modecolor[2],CFrame.new(start,hitt),10-10*i,10-10*i,41-20*i,22-17*i,22-17*i,-2+2*i,.09,"Sphere",6,0,"") | |
| 4895 | Effect(e,modecolor[2],ref.CFrame,((start-hitt).magnitude)*5,60-60*i,60-60*i,0,9-9*i,9-9*i,.09,"Cylinder",6,0,"") | |
| 4896 | end | |
| 4897 | local aim=CFrame.new(Root.Position,mouse.Hit.p) | |
| 4898 | local direction=aim.lookVector | |
| 4899 | local heed=math.atan2(direction.x,direction.z) | |
| 4900 | local heed=math.deg(heed) | |
| 4901 | ||
| 4902 | Effect(e,modecolor[1],CFrame.new(ref2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),70-50*i,70-50*i,70-50*i,-1+.3*i,41-6*i,-1+.3*i,.08,"Sphere",6,0,"") | |
| 4903 | Effect2(e,modecolor[1],CFrame.new(ref2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),66-45*i,152-62*i,66-45*i,-3+2.5*i,-2+1.8*i,-3+2.5*i,.05,"Sphere",10-8*i,"") | |
| 4904 | asdsd.Size=NSn({NSKp(0, 30-24*i),NSKp(1, 15-14.8*i)})
| |
| 4905 | asdsd.Speed=NRn(250-120*i) | |
| 4906 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.15) | |
| 4907 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.07032387e-05, 1-.2*math.sin(sin/30), 3.66327949e-05, 0.365233898, -3.60649011e-15, -0.930915773, 2.79274718e-05, 1, 1.09570165e-05, 0.930915773, -2.99999992e-05, 0.365233898)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4908 | Neck.C0=clerp(Neck.C0,CFrame.new(1.87964433e-05, 1.50002456, -2.13099647e-05, 0.365233898, 2.79274718e-05, 0.930915773, -3.60649011e-15, 1, -2.99999992e-05, -0.930915773, 1.09570165e-05, 0.365233898)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4909 | RS.C0=clerp(RS.C0,CFrame.new(1.61391425, 0.0711705685, -0.342857212, 0.908895373, -0.369885743, 0.1925973, 0.401635081, 0.900713503, -0.165543348, -0.112242907, 0.227815449, 0.967213392)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4910 | LS.C0=clerp(LS.C0,CFrame.new(-1.92762482, 0.430832565, -0.291689336, 0.0453204662, 0.927795708, -0.370325655, -0.996603668, 0.0675055012, 0.0471605733, 0.0687543899, 0.366930544, 0.927704096)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4911 | RH.C0=clerp(RH.C0,CFrame.new(0.590745747, -1.52371395, -0.13567847, 0.981111169, -0.169943064, 0.0924131274, 0.14146705, 0.956155479, 0.256425232, -0.131939024, -0.238508269, 0.962136209)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4912 | LH.C0=clerp(LH.C0,CFrame.new(-0.553898275, -2.04400301, 0.340089291, 0.939236581, -0.00486665964, 0.343236327, -0.0787200257, 0.97019881, 0.229166746, -0.334122717, -0.242261291, 0.910863101)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 4913 | end | |
| 4914 | hum.AutoRotate=true | |
| 4915 | asdsd.Enabled=false | |
| 4916 | ref:Remove() | |
| 4917 | --ref2:Remove() | |
| 4918 | game:GetService("Debris"):AddItem(ref2,4)
| |
| 4919 | ||
| 4920 | elseif mode=="True Catastrophe" then | |
| 4921 | ||
| 4922 | elseif mode=="Cyclone" then | |
| 4923 | ||
| 4924 | elseif mode=="Minstrel" then | |
| 4925 | ||
| 4926 | elseif mode=="Sombra" then | |
| 4927 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 4928 | ref.Anchored=true | |
| 4929 | ref.CFrame=CFrame.new(mouse.Hit.p+Vector3.new(0,1,0)) | |
| 4930 | meshs(ref,"Mesh",Vector3.new(1,380,380),Enum.MeshType.Cylinder,"") | |
| 4931 | local hits,poss=rayCast(ref.Position,-ref.CFrame.upVector,999,chr) | |
| 4932 | if hits~=nil then | |
| 4933 | REffect(e,modecolor[1],CFrame.new(poss)*CFrame.Angles(0,0,math.rad(90)),2,150,150,-.05,-4,-4,.04,"Cylinder",6,0,"") | |
| 4934 | ref.CFrame=CFrame.new(poss)*CFrame.Angles(0,math.random(-120,120),math.rad(90)) | |
| 4935 | hum.WalkSpeed=0 | |
| 4936 | hum.JumpPower=0 | |
| 4937 | hum.AutoRotate=false | |
| 4938 | Root.Anchored=true | |
| 4939 | local oring=Root.CFrame | |
| 4940 | sounds(Root,"1472248118",3.5,1.1) | |
| 4941 | for i=0,1,0.04 do | |
| 4942 | swait() | |
| 4943 | Root.CFrame=clerp(Root.CFrame,oring*CFrame.new(0,-8,0),.2) | |
| 4944 | RJ.C0=clerp(RJ.C0,CFrame.new(4.25239284e-18, -0.00432334701, -0.0807504505, 1, -9.82181395e-16, -5.25885004e-17, -9.83588211e-16, 0.998569727, 0.0534659773, 0, -0.0534659773, 0.998569727)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 4945 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.50123751, -0.0888370872, 1, 0, 0, 0, 0.969821453, 0.243816987, 0, -0.243816987, 0.969821453)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 4946 | RS.C0=clerp(RS.C0,CFrame.new(0.417676121, 0.298905194, -0.82144773, -0.164930016, 0.864000976, 0.475710571, 0.979468465, 0.200168371, -0.0239682049, -0.115930766, 0.461990356, -0.879275382)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 4947 | LS.C0=clerp(LS.C0,CFrame.new(-0.417448014, 0.521077216, -0.866203606, -0.00113600027, -0.740867972, -0.671649814, -0.997582853, -0.0458261035, 0.0522360727, -0.0694791228, 0.670085609, -0.739025116)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 4948 | RH.C0=clerp(RH.C0,CFrame.new(0.507892191, -1.99700797, -0.0258190408, 0.999171257, -0.0275272951, -0.0299848188, 0.0258717798, 0.998191357, -0.0542664602, 0.031424392, 0.0534457192, 0.998076379)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 4949 | LH.C0=clerp(LH.C0,CFrame.new(-0.531556249, -1.99586904, -0.0233107321, 0.995296001, 0.0471440814, 0.0846363902, -0.0423771515, 0.997459471, -0.0572625697, -0.0871209428, 0.0534065552, 0.994765222)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 4950 | end | |
| 4951 | Root.CFrame=CFrame.new(ref.Position-Vector3.new(0,5,0)) | |
| 4952 | oring=Root.CFrame | |
| 4953 | sounds(Root,"144955678",3.2,.9) | |
| 4954 | Effect(e,modecolor[1],CFrame.new(poss)*CFrame.Angles(0,0,math.rad(90)),1,350,350,0,15,15,.06,"Cylinder",6,0,"") | |
| 4955 | ref.Transparency=0 | |
| 4956 | local function spike(cf) | |
| 4957 | local sspik=cwedges(e,"",Vector3.new(7,19,7),modecolor[1],Enum.Material.SmoothPlastic,0,0) | |
| 4958 | sspik.Anchored=true | |
| 4959 | sspik.CFrame=cf*CFrame.Angles(math.rad(math.random(-18,18)),math.random(-120,120),math.rad(math.random(-18,18)))*CFrame.new(0,-10,0) | |
| 4960 | local re=sspik.CFrame | |
| 4961 | coroutine.resume(coroutine.create(function(pk) | |
| 4962 | sounds(pk,"597499462",3.4,1.3) | |
| 4963 | local flam1=particles(pk,.8,"Black","522606102",.2,1,"Top",3,3,0,1,.7,1,55,55,13,11,false,4) | |
| 4964 | flam1.Acceleration=Vector3.new(0,-30,0) | |
| 4965 | for i=1,60 do | |
| 4966 | swait() | |
| 4967 | if i>=8 then | |
| 4968 | Mdamage("None",pk,9,math.random(5,7),0.1,"")
| |
| 4969 | else | |
| 4970 | Mdamage("None",pk,9,math.random(23,37),0.1,"")
| |
| 4971 | end | |
| 4972 | pk.CFrame=clerp(pk.CFrame,re*CFrame.new(0,15,0),.3) | |
| 4973 | end | |
| 4974 | for i=0,1.1,.04 do | |
| 4975 | swait() | |
| 4976 | pk.Transparency=i | |
| 4977 | end | |
| 4978 | pk.Transparency=1 | |
| 4979 | pk:Remove() | |
| 4980 | end),sspik) | |
| 4981 | end | |
| 4982 | coroutine.resume(coroutine.create(function(s) | |
| 4983 | local refz=parts(e,"ref",Vector3.new(.2,.2,.2),"Really black",Enum.Material.Neon,0,1) | |
| 4984 | refz.Anchored=true | |
| 4985 | refz.CFrame=CFrame.new(poss) | |
| 4986 | swait(30) | |
| 4987 | CameraShake(750,Root,3,.08) | |
| 4988 | for i=0,math.random(8,12) do | |
| 4989 | spike(refz.CFrame*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(math.random(-100,100)/4,0,math.random(-100,100)/4)) | |
| 4990 | end | |
| 4991 | swait(90) | |
| 4992 | for i=0,1.1,.04 do | |
| 4993 | swait() | |
| 4994 | s.Transparency=i | |
| 4995 | end | |
| 4996 | s.Transparency=1 | |
| 4997 | s:Remove() | |
| 4998 | refz:Remove() | |
| 4999 | end),ref) | |
| 5000 | for i=0,1,0.05 do | |
| 5001 | swait() | |
| 5002 | Root.CFrame=clerp(Root.CFrame,oring*CFrame.new(0,8,0),.4) | |
| 5003 | RJ.C0=clerp(RJ.C0,CFrame.new(1.90734863e-06, -0.0149427801, 0.0884052888, 1, -9.81655599e-16, 6.16268019e-17, -9.83588211e-16, 0.998035252, -0.0626550764, 0, 0.0626550764, 0.998035252)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.9) | |
| 5004 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.43594325, 0.117219642, 1, 0, 0, 0, 0.978608489, -0.205731407, 0, 0.205731407, 0.978608489)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.9) | |
| 5005 | RS.C0=clerp(RS.C0,CFrame.new(1.53294015, 1.2211014, -0.0131970346, -0.0734649971, -0.143687055, 0.986892581, -0.0373094976, -0.988477945, -0.146695212, 0.996599674, -0.0475974344, 0.0672576353)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.9) | |
| 5006 | LS.C0=clerp(LS.C0,CFrame.new(-1.53566861, 1.07486546, -0.0038818568, -0.0351750217, 0.191066936, -0.98094666, -0.0307650268, -0.981295824, -0.190031782, -0.998907506, 0.0234944746, 0.0403952785)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.9) | |
| 5007 | RH.C0=clerp(RH.C0,CFrame.new(0.50788939, -1.98653686, 0.0363723487, 0.999171257, -0.0275272951, -0.0299848188, 0.0293402597, 0.99765712, 0.0618028007, 0.0282132979, -0.0626313388, 0.997637987)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.9) | |
| 5008 | LH.C0=clerp(LH.C0,CFrame.new(-0.531558037, -1.98511493, 0.0387312621, 0.995296001, 0.0471440814, 0.0846363902, -0.0521910489, 0.996925592, 0.0584430397, -0.0816209242, -0.0625853837, 0.994696498)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.9) | |
| 5009 | end | |
| 5010 | Root.Anchored=false | |
| 5011 | hum.AutoRotate=true | |
| 5012 | end | |
| 5013 | elseif mode=="Fictitious" then | |
| 5014 | for i=0,1,0.07 do | |
| 5015 | swait() | |
| 5016 | RJ.C0=clerp(RJ.C0,CFrame.new(1.44302081e-08, -0.00260057556, -0.0452057235, 1, 4.15183763e-07, -3.18685125e-07, 3.95779068e-07, 0.998360634, 0.0574326254, -3.39008011e-07, -0.0574319549, 0.998349547)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5017 | Neck.C0=clerp(Neck.C0,CFrame.new(3.34923925e-07, 1.49765956, 0.0477407724, 1, 2.33679472e-07, -1.51037582e-07, 1.86497346e-07, 0.999485135, 0.0322615318, -1.60187483e-07, -0.0322607085, 0.999479651)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5018 | RS.C0=clerp(RS.C0,CFrame.new(0.506128967, 0.597761393, -0.982940853, -0.00417280896, 0.660658598, 0.750674903, 0.979567528, -0.148262754, 0.135929704, 0.201099813, 0.735899627, -0.646537662)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5019 | LS.C0=clerp(LS.C0,CFrame.new(-0.684561431, 0.285560399, -0.72993058, 0.173506722, -0.678175926, -0.714123845, -0.906874418, 0.172740161, -0.384383529, 0.384034783, 0.714310169, -0.585045755)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5020 | RH.C0=clerp(RH.C0,CFrame.new(0.51496762, -1.99649358, -0.0679845288, 0.994086564, -0.0276396163, -0.105015472, 0.0214089863, 0.997979283, -0.0600121841, 0.106460184, 0.0574097075, 0.992658496)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5021 | LH.C0=clerp(LH.C0,CFrame.new(-0.521369874, -1.99603069, -0.0686411262, 0.998338103, 0.0392456837, 0.0421999432, -0.0367200635, 0.997591555, -0.0590354316, -0.0444153957, 0.0573883764, 0.997363687)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5022 | end | |
| 5023 | local refz=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,0) | |
| 5024 | refz.Anchored=true | |
| 5025 | refz.CFrame=CFrame.new(Root.Position) | |
| 5026 | meshs(refz,"Mesh",Vector3.new(0,0,0),Enum.MeshType.Brick,"") | |
| 5027 | sounds(refz,"300915902",4,1.3) | |
| 5028 | for i=0,1,0.04 do | |
| 5029 | swait() | |
| 5030 | RJ.C0=clerp(RJ.C0,CFrame.new(1.44300598e-08, -0.00260093249, -0.0452057011, 1, 4.15183763e-07, -3.18685125e-07, 3.95779068e-07, 0.998360634, 0.0574326254, -3.39008011e-07, -0.0574319549, 0.998349547)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5031 | Neck.C0=clerp(Neck.C0,CFrame.new(3.23914577e-07, 1.49630642, 0.115249127, 1, 2.2546422e-07, -1.63047048e-07, 1.86497346e-07, 0.999804974, -0.0200323239, -1.60187483e-07, 0.0200328641, 0.99979949)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5032 | RS.C0=clerp(RS.C0,CFrame.new(1.73054361, 1.09446013, -0.967649221, -0.196545839, -0.476092041, 0.857150078, 0.843174994, -0.528254867, -0.100069977, 0.500434101, 0.703055084, 0.505252063)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.08) | |
| 5033 | LS.C0=clerp(LS.C0,CFrame.new(-1.72011602, 0.120296612, -0.593640506, 0.225332841, 0.580092907, -0.782762587, -0.851843596, 0.507241666, 0.130689085, 0.472858399, 0.637339354, 0.608443618)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.08) | |
| 5034 | RH.C0=clerp(RH.C0,CFrame.new(0.51496762, -1.99649358, -0.0679845288, 0.994086564, -0.0276396163, -0.105015472, 0.0214089863, 0.997979283, -0.0600121841, 0.106460184, 0.0574097075, 0.992658496)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5035 | LH.C0=clerp(LH.C0,CFrame.new(-0.521365881, -1.99603128, -0.0686375052, 0.998338103, 0.0392456837, 0.0421999432, -0.0367200635, 0.997591555, -0.0590354316, -0.0444153957, 0.0573883764, 0.997363687)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5036 | refz.Position=clerp(refz.Position,(Root.CFrame*CFrame.new(0,.5,-7)).p,.3) | |
| 5037 | refz:findFirstChild("Mesh").Scale=clerp(refz:findFirstChild("Mesh").Scale,Vector3.new(25,25,25),.08)
| |
| 5038 | end | |
| 5039 | sounds(Root,"914309946",3.4,1.4) | |
| 5040 | for i=0,1,0.09 do | |
| 5041 | swait() | |
| 5042 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.46526504e-05, -0.226024732, 0.246325254, 0.179239914, -0.051332932, -0.982465267, -0.225656167, 0.969868124, -0.0918432102, 0.957576334, 0.238161311, 0.162255481)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(0-360*i),0),.4) | |
| 5043 | Neck.C0=clerp(Neck.C0,CFrame.new(0.0846032351, 1.49059963, -0.204873845, 0.606267333, -0.0581711158, 0.793130636, -0.0837263614, 0.987109661, 0.136398494, -0.790841281, -0.149099872, 0.593581855)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5044 | RS.C0=clerp(RS.C0,CFrame.new(1.40277469, -0.0179830045, -0.572603106, 0.740871847, 0.0105279088, 0.671563983, 0.142504632, 0.974648356, -0.172490895, -0.656354666, 0.223494619, 0.720589221)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5045 | LS.C0=clerp(LS.C0,CFrame.new(-1.6482271, 0.136143118, 0.512715936, 0.750199556, 0.451559961, 0.483005583, -0.632453084, 0.70314008, 0.324957162, -0.19288291, -0.549261034, 0.813085854)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5046 | RH.C0=clerp(RH.C0,CFrame.new(0.396210909, -1.92782247, 0.0838290155, 0.967097819, -0.0182997845, -0.253745824, 0.0419890918, 0.995212197, 0.0882590711, 0.250915796, -0.0960097164, 0.963235855)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5047 | LH.C0=clerp(LH.C0,CFrame.new(-0.941935778, -1.33893836, -0.186061949, 0.335983276, -0.352906764, 0.873253763, 0.0547416843, 0.932900429, 0.355949849, -0.940275788, -0.0717898235, 0.332757652)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5048 | refz.Position=clerp(refz.Position,(Root.CFrame*CFrame.new(0,.5,-7)).p,.3) | |
| 5049 | refz:findFirstChild("Mesh").Scale=clerp(refz:findFirstChild("Mesh").Scale,Vector3.new(25,25,25),.08)
| |
| 5050 | end | |
| 5051 | sounds(refz,"300916082",3.1,1.4) | |
| 5052 | local num=2 | |
| 5053 | Effect(e,"Lime green",CFrame.new(refz.Position),120,120,120,-4,-4,-4,.04,"Brick",6,0,"") | |
| 5054 | refz.Transparency=1 | |
| 5055 | game:GetService("Debris"):AddItem(refz,2)
| |
| 5056 | for i=1,50 do | |
| 5057 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5058 | ref.Anchored=true | |
| 5059 | local ref2=parts(e,"ref2",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,.5) | |
| 5060 | meshs(ref2,"Mesh",Vector3.new(20,20,20),Enum.MeshType.Brick,"") | |
| 5061 | ref2.Anchored=true | |
| 5062 | ref.CFrame=Root.CFrame*CFrame.new(0,0,-2) | |
| 5063 | ref2.Anchored=CFrame.new(ref.Position) | |
| 5064 | num=num+13 | |
| 5065 | coroutine.resume(coroutine.create(function(c,c2,c3) | |
| 5066 | local la=c.CFrame | |
| 5067 | local num2=num | |
| 5068 | for i=1,30+(num2/10) do | |
| 5069 | swait() | |
| 5070 | c.CFrame=clerp(c.CFrame,la*CFrame.new(0,0,-num2),.05) | |
| 5071 | c2.CFrame=CFrame.new(c.Position) | |
| 5072 | end | |
| 5073 | c2.Transparency=1 | |
| 5074 | sounds(c,"169445226",4,1.2) | |
| 5075 | Effect(e,"Lime green",CFrame.new(c.Position),20,20,20,9,9,9,.05,"Brick",6,0,"") | |
| 5076 | Effect(e,"Lime green",CFrame.new(c.Position),20,20,20,-.4,-.4,-.4,.02,"Brick",6,0,"") | |
| 5077 | Mdamage("None",c,15,math.random(17,22),0,"")
| |
| 5078 | game:GetService("Debris"):AddItem(c,2)
| |
| 5079 | game:GetService("Debris"):AddItem(c2,2)
| |
| 5080 | end),ref,ref2,refz) | |
| 5081 | end | |
| 5082 | for i=0,1,0.03 do | |
| 5083 | swait() | |
| 5084 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.676489e-05, -0.226022273, 0.246315911, 0.186444938, -1.2981498e-05, -0.982465446, -0.48389715, 0.870292306, -0.0918418989, 0.855033219, 0.49253574, 0.162255317)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5085 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0890345573, 1.48197615, -0.0182486102, 0.200582325, -0.190779805, 0.960921347, 2.32306011e-05, 0.980856359, 0.194732845, -0.979676962, -0.0390376449, 0.196746886)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5086 | RS.C0=clerp(RS.C0,CFrame.new(1.72543931, 0.220675647, -0.361855567, 0.890536308, -0.34131217, 0.300750762, 0.4059591, 0.894592762, -0.186818883, -0.205285877, 0.288461477, 0.935226083)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5087 | LS.C0=clerp(LS.C0,CFrame.new(-1.69930279, 0.338095069, 0.311057538, 0.813415349, 0.540067375, 0.216061622, -0.578780353, 0.788514435, 0.207986489, -0.0580410063, -0.294231653, 0.953970075)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5088 | RH.C0=clerp(RH.C0,CFrame.new(0.911541104, -1.74429882, 0.0838287622, 0.788585842, -0.560854852, -0.2521393, 0.583987832, 0.811479807, 0.0214256514, 0.192589253, -0.164142251, 0.967453778)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5089 | LH.C0=clerp(LH.C0,CFrame.new(-1.5751127, -1.61932802, -0.166655153, 0.160116807, 0.900475025, 0.404360622, 0.0202020854, 0.406570703, -0.913396001, -0.986891448, 0.15441899, 0.0469073243)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5090 | end | |
| 5091 | elseif mode=="Benevolence" then | |
| 5092 | hum.WalkSpeed=8 | |
| 5093 | hum.JumpPower=0 | |
| 5094 | sounds(Root,"1985991193",2.4,.9) | |
| 5095 | local del=0 | |
| 5096 | for i=0,1,0.015 do | |
| 5097 | swait() | |
| 5098 | Effect(e,modecolor[1],RArm.CFrame*CFrame.new(0,-1.4,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),2,2,2,.2,.2,4,.08,"Sphere",6,0,"") | |
| 5099 | Effect(e,modecolor[1],LArm.CFrame*CFrame.new(0,-1.4,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),2,2,2,.2,.2,4,.08,"Sphere",6,0,"") | |
| 5100 | del=del+1 | |
| 5101 | if del>=8 then | |
| 5102 | del=0 | |
| 5103 | Effect(e,modecolor[2],CFrame.new(Root.Position-Vector3.new(0,3,0)),290,2,290,-2,1,-2,.09,"Sphere",6,0,"") | |
| 5104 | end | |
| 5105 | RJ.C0=clerp(RJ.C0,CFrame.new(-7.09919618e-07, -0.0119929845, -0.0446433611, 1.00000036, -5.81353447e-07, 1.59476494e-05, -1.60701347e-07, 0.999725342, 0.0236263108, -1.80728803e-05, -0.0236255508, 0.999720752)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5106 | Neck.C0=clerp(Neck.C0,CFrame.new(-2.36033316e-07, 1.49812877, -0.0629803687, 1, 2.14596025e-06, -1.68640108e-05, -4.01131871e-07, 0.994703054, 0.102790579, 1.69952691e-05, -0.102790579, 0.994703054)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5107 | RS.C0=clerp(RS.C0,CFrame.new(1.63898337, 0.198953122, -0.737422109, 0.930746019, -0.349256307, 0.108314142, 0.296624064, 0.547907233, -0.782184124, 0.21383664, 0.76014322, 0.613560259)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5108 | LS.C0=clerp(LS.C0,CFrame.new(-1.55594385, 0.105719775, -0.731978178, 0.914637327, 0.390140265, -0.10596808, -0.325609803, 0.555545807, -0.765079916, -0.239618376, 0.734274805, 0.635156393)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5109 | RH.C0=clerp(RH.C0,CFrame.new(0.530408382, -1.98741496, -0.00304345414, 0.998966515, -0.0391461663, 0.0230975971, 0.0386405103, 0.999012232, 0.0219470114, -0.0239339266, -0.0210318323, 0.999492347)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5110 | LH.C0=clerp(LH.C0,CFrame.new(-0.500028372, -1.98858964, -0.00234356895, 0.997592211, 0.0297824424, 0.0626323521, -0.0282351803, 0.999277532, -0.0254456978, -0.0633449256, 0.0236159954, 0.997712314)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5111 | end | |
| 5112 | MStatus("Bless",Root,32)
| |
| 5113 | Effect(e,modecolor[1],CFrame.new(Root.Position-Vector3.new(0,3,0)),320,5,320,2,-.1,2,.03,"Sphere",6,0,"") | |
| 5114 | Effect(e,modecolor[1],CFrame.new(Root.Position-Vector3.new(0,3,0)),320,2,320,-8,15,-8,.03,"Sphere",6,0,"") | |
| 5115 | Effect(e,modecolor[2],CFrame.new(Root.Position-Vector3.new(0,3,0)),320,2,320,7,-.01,7,.04,"Sphere",6,0,"") | |
| 5116 | Effect(e,modecolor[1],CFrame.new(Root.Position-Vector3.new(0,3,0))*CFrame.Angles(-math.rad(90),0,0),64,64,2,0,0,0,.05,"FileMesh",3,1,"3270017") | |
| 5117 | Effect(e,modecolor[1],CFrame.new(Root.Position-Vector3.new(0,3,0))*CFrame.Angles(-math.rad(90),0,0),64,64,2,1,1,0,.04,"FileMesh",3,.4,"3270017") | |
| 5118 | sounds(Root,"969800663",2.8,.7) | |
| 5119 | for i=0,1,0.03 do | |
| 5120 | swait() | |
| 5121 | Effect(e,modecolor[1],RArm.CFrame*CFrame.new(0,-1.4,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),2,2,2,.2,.2,4,.08,"Sphere",6,0,"") | |
| 5122 | Effect(e,modecolor[1],LArm.CFrame*CFrame.new(0,-1.4,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),2,2,2,.2,.2,4,.08,"Sphere",6,0,"") | |
| 5123 | RJ.C0=clerp(RJ.C0,CFrame.new(1.36283745e-06, -0.00892102905, 0.0852929354, 1.00000036, 1.45661852e-06, 1.58916264e-05, -1.60701347e-07, 0.994579196, -0.104025364, -1.80728803e-05, 0.104025543, 0.994574547)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5124 | Neck.C0=clerp(Neck.C0,CFrame.new(-8.86915313e-06, 1.42353165, 0.119730651, 1.00000036, -5.34194214e-06, -1.7267992e-05, 1.45661852e-06, 0.982587337, -0.185826033, 1.58916264e-05, 0.185824856, 0.982582808)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5125 | RS.C0=clerp(RS.C0,CFrame.new(1.54154086, 1.16114664, -0.156252354, 0.982243657, -0.163379028, -0.0922216401, -0.169299021, -0.983708739, -0.0604575202, -0.0808417574, 0.0749970451, -0.993901491)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5126 | LS.C0=clerp(LS.C0,CFrame.new(-1.59330463, 1.13533187, -0.167699769, 0.982516468, 0.141189963, 0.121354096, 0.150142059, -0.986319602, -0.068054162, 0.110085353, 0.0850846767, -0.990273774)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5127 | RH.C0=clerp(RH.C0,CFrame.new(0.530408204, -1.98815751, 0.121438518, 0.998966515, -0.0391461663, 0.0230975971, 0.0352737494, 0.988178253, 0.149197087, -0.0286650378, -0.148228139, 0.988537788)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5128 | LH.C0=clerp(LH.C0,CFrame.new(-0.500028074, -1.98923254, 0.122287512, 0.997592211, 0.0297824424, 0.0626323521, -0.0360808522, 0.994133651, 0.101964176, -0.0592281818, -0.1039785, 0.992814541)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5129 | end | |
| 5130 | end | |
| 5131 | attack=false | |
| 5132 | end | |
| 5133 | ||
| 5134 | function Skill2() | |
| 5135 | attack=true | |
| 5136 | if mode=="Rust" then | |
| 5137 | ||
| 5138 | elseif mode=="Nova" then | |
| 5139 | ||
| 5140 | elseif mode=="Celestial" then | |
| 5141 | ||
| 5142 | elseif mode=="Glacier" then | |
| 5143 | hold=true | |
| 5144 | local aaaaa=0 | |
| 5145 | local asdf=0 | |
| 5146 | repeat | |
| 5147 | swait() | |
| 5148 | asdf=asdf+1 | |
| 5149 | if asdf>=3 then | |
| 5150 | asdf=0 | |
| 5151 | Effect(e,modecolor[1],RArm.CFrame*CFrame.new(0,-1.4,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),9,9,9,.4,.4,5,.08,"Sphere",6,0,"") | |
| 5152 | Effect(e,modecolor[1],LArm.CFrame*CFrame.new(0,-1.4,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),9,9,9,.4,.4,5,.08,"Sphere",6,0,"") | |
| 5153 | end | |
| 5154 | aaaaa=aaaaa+1 | |
| 5155 | if aaaaa>=10 then | |
| 5156 | aaaaa=0 | |
| 5157 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,0) | |
| 5158 | meshs(ref,"Mesh",Vector3.new(35,32,120),Enum.MeshType.Sphere,"") | |
| 5159 | ref.Anchored=true | |
| 5160 | ref.CFrame=CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(math.random(-75,75),math.random(140,210),math.random(-75,75))*CFrame.Angles(math.rad(math.random(-10,10)),0,math.rad(math.random(-10,10))) | |
| 5161 | coroutine.resume(coroutine.create(function(b) | |
| 5162 | sounds(b,"588733125",2.3,1.1) | |
| 5163 | Effect(e,"Bright blue",b.CFrame,12,12,12,25,25,25,.08,"Sphere",6,0,"") | |
| 5164 | local hh=particles(b,1,"Baby blue","1370167385",.7,1,"Back",7,5,0,1,1,1,55,55,47,40,false) | |
| 5165 | hh.Rate=40 | |
| 5166 | local hit=nil | |
| 5167 | local pos | |
| 5168 | local sa1=b.Position | |
| 5169 | local sa2=b.CFrame | |
| 5170 | local re=0 | |
| 5171 | for i=0,150 do | |
| 5172 | swait() | |
| 5173 | re=re+1 | |
| 5174 | if re>=2 then | |
| 5175 | re=0 | |
| 5176 | --[[Effect(e,"Baby blue",b.CFrame*CFrame.Angles(math.rad(math.random(-40,40)),0,math.rad(math.random(-40,40))),12,12,40,0,0,-1,.06,"Sphere",3,3,"") | |
| 5177 | Effect(e,"Baby blue",b.CFrame*CFrame.Angles(math.rad(math.random(-40,40)),0,math.rad(math.random(-40,40))),12,12,40,0,0,-1,.06,"Sphere",3,3,"")]] | |
| 5178 | Effect(e,"Bright blue",b.CFrame*CFrame.Angles(math.rad(math.random(-10,10)),0,math.rad(math.random(-10,10))),25,22,90,0,0,0,.04,"Sphere",6,0,"") | |
| 5179 | end | |
| 5180 | hit,pos=rayCast(sa1,-sa2.upVector,8.5,chr) | |
| 5181 | b.CFrame=CFrame.new(sa1,pos) | |
| 5182 | sa1=sa1+(-sa2.upVector*8) | |
| 5183 | if hit~=nil then | |
| 5184 | break | |
| 5185 | end | |
| 5186 | end | |
| 5187 | hh.Enabled=false | |
| 5188 | CameraShake(210,b,31,.08) | |
| 5189 | sounds(b,"588732660",2.3,1.3) | |
| 5190 | Mdamage("None",b,21,math.random(27,38),0,"")
| |
| 5191 | MStatus("Freeze",b,10)
| |
| 5192 | ||
| 5193 | Effect(e,"Baby blue",CFrame.new(pos),8,8,8,15,15,15,.04,"Sphere",6,0,"") | |
| 5194 | Effect(e,"Baby blue",CFrame.new(pos),8,8,8,13,13,13,.042,"Brick",1,0,"") | |
| 5195 | Effect(e,"Bright blue",CFrame.new(pos),12,12,12,26,26,26,.05,"Sphere",6,0,"") | |
| 5196 | for i=1,math.random(3,6) do | |
| 5197 | Effect(e,"Bright blue",CFrame.new(b.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),15,15,87,0,0,0,.02,"Sphere",4,math.random(-12,12),"",100,200,150) | |
| 5198 | end | |
| 5199 | b.Transparency=1 | |
| 5200 | game:GetService("Debris"):AddItem(b,5)
| |
| 5201 | for i=0,math.random(9,14) do | |
| 5202 | local aaaaaa=math.random(16,28) | |
| 5203 | local freez=parts(e,"ref",Vector3.new(.2,.2,.2),"Bright blue",Enum.Material.Glass,0,.4) | |
| 5204 | freez.Anchored=true | |
| 5205 | freez.CFrame=CFrame.new(pos)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(math.random(-12,12),0,math.random(-12,12))*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)) | |
| 5206 | meshs(freez,"Mesh",Vector3.new(aaaaaa,aaaaaa,aaaaaa),Enum.MeshType.Brick,"") | |
| 5207 | coroutine.resume(coroutine.create(function(e) | |
| 5208 | swait(70) | |
| 5209 | freez.Anchored=false | |
| 5210 | freez.Velocity=Vector3.new(math.random(-1,1)*math.random(25,35),math.random(1,1)*math.random(25,35),math.random(-1,1)*math.random(25,35)) | |
| 5211 | game:GetService("Debris"):AddItem(freez,3)
| |
| 5212 | end),freez) | |
| 5213 | end | |
| 5214 | swait(70) | |
| 5215 | sounds(b,"138122923",1.4,1.1) | |
| 5216 | end),ref) | |
| 5217 | end | |
| 5218 | if Pose=="Idle" then | |
| 5219 | RJ.C0=clerp(RJ.C0,CFrame.new(0.000630337745, -.1-.1*math.sin(sin/50), -0.0514505655, 1,0,0,0,1,0,0,0,1)*CFrame.new(0,0,0-.04*math.sin(sin/50))*CFrame.Angles(0,Root.RotVelocity.Y/15,0),.3) | |
| 5220 | Neck.C0=clerp(Neck.C0,CFrame.new(-1.79458456e-15, 1.41907752, 0.23760137, 1, -1.19705121e-15, 4.07818412e-16, -1.26461341e-15, 0.946574748, -0.322484642, 0, 0.322484642, 0.946574748)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5221 | RS.C0=clerp(RS.C0,CFrame.new(1.79704916, 0.914062381-.1*math.cos(sin/50), 0.162686601, -0.500811219, -0.855435431, -0.131979004, 0.860372543, -0.508653939, 0.0320985354, -0.0945898518, -0.0974757969, 0.990732729)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5222 | LS.C0=clerp(LS.C0,CFrame.new(-1.84694779, 0.971579313-.1*math.cos(sin/50), 0.051883027, -0.572602808, 0.818911672, 0.0388557203, -0.819827616, -0.572127521, -0.0235151518, 0.00297359377, -0.0453198329, 0.998968124)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5223 | RH.C0=clerp(RH.C0,CFrame.new(0.573823512, -1.79539232+.1*math.sin(sin/50), 0.0048128441, 0.995956421, -0.0623230599, -0.0647053421, 0.062191993, 0.998056114, -0.00403955206, 0.0648313463, -9.3691051e-07, 0.997896373)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-1+1*math.sin(sin/50)),0,0),.3) | |
| 5224 | LH.C0=clerp(LH.C0,CFrame.new(-0.549286842, -1.79832022+.1*math.sin(sin/50), 0.00406210497, 0.996040761, 0.0338748135, 0.0821928084, -0.0339899957, 0.999422252, 2.17083584e-06, -0.0821451843, -0.00279589556, 0.996616662)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-1+1*math.sin(sin/50)),0,0),.3) | |
| 5225 | elseif Pose=="Walk" then | |
| 5226 | RJ.C0=clerp(RJ.C0,CFrame.new(-0, 0-.1*math.sin(sin/5), 0, 1, 0, 0, 0, 1, -2.12296717e-42, 0, -2.12296717e-42, 1)*CFrame.new(0,0,0)*CFrame.Angles(-math.rad(2),math.rad(0-6*math.sin(sin/10))+Root.RotVelocity.Y/15,0),.3) | |
| 5227 | Neck.C0=clerp(Neck.C0,CFrame.new(-1.79458456e-15, 1.41907752, 0.23760137, 1, -1.19705121e-15, 4.07818412e-16, -1.26461341e-15, 0.946574748, -0.322484642, 0, 0.322484642, 0.946574748)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5228 | RS.C0=clerp(RS.C0,CFrame.new(1.79704916, 0.914062381-.04*math.cos(sin/5), 0.162686601, -0.500811219, -0.855435431, -0.131979004, 0.860372543, -0.508653939, 0.0320985354, -0.0945898518, -0.0974757969, 0.990732729)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5229 | LS.C0=clerp(LS.C0,CFrame.new(-1.84694779, 0.971579313-.04*math.cos(sin/5), 0.051883027, -0.572602808, 0.818911672, 0.0388557203, -0.819827616, -0.572127521, -0.0235151518, 0.00297359377, -0.0453198329, 0.998968124)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5230 | RH.C0=clerp(RH.C0,CFrame.new(0.497421563, -1.900072+.1*math.sin(sin/5), -1.6358681e-05, 0.99960798, -0.027273545, -0.00633664196, 0.0272729993, 0.999628007, -0.000172889879, 0.00633900007, 2.88098301e-09, 0.999979973)*CFrame.new(0,.05-.1*math.sin(sin/5),0-.4*math.cos(sin/10))*CFrame.Angles(math.rad(0+35*math.cos(sin/10)),math.rad(0+6*math.sin(sin/10)),0),.3) | |
| 5231 | LH.C0=clerp(LH.C0,CFrame.new(-0.588625193, -1.89550474+.1*math.sin(sin/5), -0.00098110456, 0.997929871, 0.0606773198, -0.0213117059, -0.060672991, 0.998157442, 0.000849818927, 0.0213239975, 0.00044498514, 0.999772549)*CFrame.new(0,.05-.1*math.sin(sin/5),0+.4*math.cos(sin/10))*CFrame.Angles(math.rad(0-35*math.cos(sin/10)),math.rad(0+6*math.sin(sin/10)),0),.3) | |
| 5232 | else | |
| 5233 | RJ.C0=clerp(RJ.C0,CFrame.new(0.000630337745, -.1-.1*math.sin(sin/50), -0.0514505655, 1,0,0,0,1,0,0,0,1)*CFrame.new(0,0,0-.04*math.sin(sin/50))*CFrame.Angles(0,Root.RotVelocity.Y/15,0),.3) | |
| 5234 | Neck.C0=clerp(Neck.C0,CFrame.new(-1.79458456e-15, 1.41907752, 0.23760137, 1, -1.19705121e-15, 4.07818412e-16, -1.26461341e-15, 0.946574748, -0.322484642, 0, 0.322484642, 0.946574748)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5235 | RS.C0=clerp(RS.C0,CFrame.new(1.79704916, 0.914062381-.1*math.cos(sin/50), 0.162686601, -0.500811219, -0.855435431, -0.131979004, 0.860372543, -0.508653939, 0.0320985354, -0.0945898518, -0.0974757969, 0.990732729)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5236 | LS.C0=clerp(LS.C0,CFrame.new(-1.84694779, 0.971579313-.1*math.cos(sin/50), 0.051883027, -0.572602808, 0.818911672, 0.0388557203, -0.819827616, -0.572127521, -0.0235151518, 0.00297359377, -0.0453198329, 0.998968124)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5237 | RH.C0=clerp(RH.C0,CFrame.new(0.573823512, -1.79539232+.1*math.sin(sin/50), 0.0048128441, 0.995956421, -0.0623230599, -0.0647053421, 0.062191993, 0.998056114, -0.00403955206, 0.0648313463, -9.3691051e-07, 0.997896373)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-1+1*math.sin(sin/50)),0,0),.3) | |
| 5238 | LH.C0=clerp(LH.C0,CFrame.new(-0.549286842, -1.79832022+.1*math.sin(sin/50), 0.00406210497, 0.996040761, 0.0338748135, 0.0821928084, -0.0339899957, 0.999422252, 2.17083584e-06, -0.0821451843, -0.00279589556, 0.996616662)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-1+1*math.sin(sin/50)),0,0),.3) | |
| 5239 | end | |
| 5240 | until not hold | |
| 5241 | elseif mode=="Desperation" then | |
| 5242 | ||
| 5243 | elseif mode=="Saint" then | |
| 5244 | ||
| 5245 | elseif mode=="Dreary" then | |
| 5246 | hum.WalkSpeed=0 | |
| 5247 | hum.JumpPower=0 | |
| 5248 | hum.AutoRotate=false | |
| 5249 | for i=0,1,0.09 do | |
| 5250 | swait() | |
| 5251 | RJ.C0=clerp(RJ.C0,CFrame.new(0.0720081031, -1.11318302, 0.430458516, 0.476246059, 1.56125665e-07, -0.879312098, 0.593725502, 0.737620115, 0.321569085, 0.648598254, -0.675216079, 0.351288527)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5252 | Neck.C0=clerp(Neck.C0,CFrame.new(0.12693426, 1.41012609, -0.0895984173, 0.476246059, 0.414178669, 0.77565825, 1.56125665e-07, 0.882119417, -0.471025974, -0.879312098, 0.224324346, 0.420105815)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5253 | RS.C0=clerp(RS.C0,CFrame.new(1.59822464, -0.107119471, -0.152235076, 0.944733262, -0.308413237, -0.111177027, 0.244311675, 0.88844496, -0.388558418, 0.218611151, 0.339922249, 0.914692342)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5254 | LS.C0=clerp(LS.C0,CFrame.new(-0.984450459, 0.525436759, -1.07314992, 0.913953185, -0.378668964, -0.145943239, -0.130423144, 0.0664708465, -0.989227772, 0.384290785, 0.923142195, 0.0113640353)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5255 | RH.C0=clerp(RH.C0,CFrame.new(0.727314234, -2.03983593, 0.126611918, 0.486771941, -0.231984869, 0.842161536, -1.04893679e-05, 0.964089632, 0.265577644, -0.873529136, -0.129284531, 0.469289273)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5256 | LH.C0=clerp(LH.C0,CFrame.new(-0.969067276, -0.56978178, -0.57897687, 0.772775412, 0.613578379, 0.16229561, -0.404942244, 0.673560858, -0.61833477, -0.488712788, 0.412113398, 0.7689749)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5257 | end | |
| 5258 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,.3,0) | |
| 5259 | meshs(ref,"Mesh",Vector3.new(0.018, 0.018, 0.018),Enum.MeshType.FileMesh,"619134988") | |
| 5260 | local refWeld=welds(ref,"refWeld",RArm,ref,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 5261 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[2],Enum.Material.Neon,.2,.5) | |
| 5262 | meshs(ref2,"Mesh",Vector3.new(0.022, 0.022, 0.022),Enum.MeshType.FileMesh,"619134988") | |
| 5263 | local ref2Weld=welds(ref,"refWeld",ref2,ref,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)) | |
| 5264 | sounds(ref,"588734356",4,1.2) | |
| 5265 | sounds(Root,"1930016365",5,1.7) | |
| 5266 | Effect(e,modecolor[1],CFrame.new(ref.Position),15,15,15,7,7,7,.04,"Brick",1,0,"") | |
| 5267 | Effect(e,modecolor[2],CFrame.new(ref.Position),13.5,13.5,13.5,7,7,7,.04,"Brick",1,0,"") | |
| 5268 | ||
| 5269 | for i=0,1,0.02 do | |
| 5270 | swait() | |
| 5271 | if i>=.3 then | |
| 5272 | end | |
| 5273 | RJ.C0=clerp(RJ.C0,CFrame.new(0.0720081031, -1.11318302, 0.430458516, 0.476246059, 1.56125665e-07, -0.879312098, 0.593725502, 0.737620115, 0.321569085, 0.648598254, -0.675216079, 0.351288527)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5274 | Neck.C0=clerp(Neck.C0,CFrame.new(0.12693426, 1.41012609, -0.0895984173, 0.476246059, 0.414178669, 0.77565825, 1.56125665e-07, 0.882119417, -0.471025974, -0.879312098, 0.224324346, 0.420105815)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5275 | RS.C0=clerp(RS.C0,CFrame.new(1.59822464, -0.107119471, -0.152235076, 0.944733262, -0.308413237, -0.111177027, 0.244311675, 0.88844496, -0.388558418, 0.218611151, 0.339922249, 0.914692342)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5276 | LS.C0=clerp(LS.C0,CFrame.new(-0.984450459, 0.525436759, -1.07314992, 0.913953185, -0.378668964, -0.145943239, -0.130423144, 0.0664708465, -0.989227772, 0.384290785, 0.923142195, 0.0113640353)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5277 | RH.C0=clerp(RH.C0,CFrame.new(0.727314234, -2.03983593, 0.126611918, 0.486771941, -0.231984869, 0.842161536, -1.04893679e-05, 0.964089632, 0.265577644, -0.873529136, -0.129284531, 0.469289273)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5278 | LH.C0=clerp(LH.C0,CFrame.new(-0.969067276, -0.56978178, -0.57897687, 0.772775412, 0.613578379, 0.16229561, -0.404942244, 0.673560858, -0.61833477, -0.488712788, 0.412113398, 0.7689749)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 5279 | refWeld.C0=clerp(refWeld.C0,CFrame.new(-2.09069514, 0.270944834, -1.42485762, -0.456453174, -0.745354712, 0.485898077, -0.868107855, 0.492787033, -0.059579283, -0.195036605, -0.449007034, -0.871982515)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 5280 | end | |
| 5281 | hum.AutoRotate=true | |
| 5282 | cooldisable=true | |
| 5283 | sounds(Root,"160892660",4,1.5) | |
| 5284 | local reee=particles(Root,1.5,modecolor[1],"262059101",.7,1,"Back",7,2,0,1,1,1,55,55,47,0,false,95) | |
| 5285 | local reee2=particles(Root,1.5,modecolor[2],"262059101",.7,1,"Back",11,15,0,1,1,1.4,55,55,20,44444,false,95) | |
| 5286 | Effect(e,modecolor[2],Root.CFrame*CFrame.Angles(math.rad(90),math.random(-120,120),0),3,3,3,2,.1,2,.04,"FileMesh",2,math.random(-14,14),"20329976") | |
| 5287 | Effect(e,modecolor[1],Root.CFrame*CFrame.Angles(math.rad(90),math.random(-120,120),0),3,3,3,3.5,.1,3.5,.03,"FileMesh",2,math.random(-14,14),"20329976") | |
| 5288 | ||
| 5289 | for i=0,1,0.012 do | |
| 5290 | swait() | |
| 5291 | Root.Velocity=Root.CFrame.lookVector*200 | |
| 5292 | Mdamage("None",ref,18,math.random(21,28),.05,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 5293 | --Effect(e,modecolor[1],Root.CFrame*CFrame.new(0,0,-3)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),1,1,1,7,7,7,.07,"Brick",1,0,"") | |
| 5294 | --Effect(e,modecolor[2],Root.CFrame*CFrame.new(0,0,-3)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),1,1,1,7,7,7,.05,"Brick",1,0,"") | |
| 5295 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),math.rad(doe*11),0),24,24,24,0,0,0,.04,"Sphere",3,4,"") | |
| 5296 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),math.rad(180+doe*11),0),24,24,24,0,0,0,.04,"Sphere",3,4,"") | |
| 5297 | --Effect(e,modecolor[1],Root.CFrame*CFrame.new(0,0,2),25,25,25,-1,-1,-1,.07,"Sphere",3,7,"") | |
| 5298 | RJ.C0=clerp(RJ.C0,CFrame.new(0.0720075965, -0.3178691484, 0.430425823, 0.432205796, 0.200070456, -0.879300892, 0.228971034, 0.918774307, 0.321599007, 0.872221589, -0.340331435, 0.351289064)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5299 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0349195004, 1.28086972, 0.115924671, 0.432205796, 0.129179761, 0.892474532, 0.200070456, 0.951284826, -0.234582141, -0.879300892, 0.279945552, 0.385305673)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5300 | RS.C0=clerp(RS.C0,CFrame.new(0.5527969, 0.846197188, -0.849597871, 0.177041024, 0.84289819, -0.508113265, -0.933383942, -0.0199573711, -0.358323932, -0.31217128, 0.537702799, 0.78321439)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5301 | LS.C0=clerp(LS.C0,CFrame.new(-1.90831816, 0.644909739, -0.73901701, 0.598976374, 0.796315253, -0.0843178332, 0.110346839, -0.18637307, -0.976262629, -0.793127418, 0.575453877, -0.199503884)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5302 | RH.C0=clerp(RH.C0,CFrame.new(0.896857798, -1.94340026, -0.240266174, 0.479206115, -0.402676255, 0.779880345, 0.304082215, 0.909686089, 0.282852054, -0.823344111, 0.101603381, 0.558373749)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5303 | LH.C0=clerp(LH.C0,CFrame.new(-1.12829554, -1.68627357, -0.372725278, 0.487431824, 0.0496857874, 0.871746242, 0.243992597, 0.950857997, -0.190622002, -0.838378131, 0.305614948, 0.451355428)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5304 | refWeld.C0=clerp(refWeld.C0,CFrame.new(-1.15193439, -4.16158342, 1.17437887, 0.934088767, -0.347014934, -0.084016785, -0.357012182, -0.910773814, -0.20744513, -0.004533723, 0.223767161, -0.974632025)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5305 | end | |
| 5306 | Mdamage("None",ref,52,math.random(30,35),0,HitSound[math.random(1,#HitSound)],1.2,1)
| |
| 5307 | Effect(e,modecolor[1],Root.CFrame*CFrame.new(0,0,-3)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),1,1,1,87,87,87,.11,"Brick",1,0,"") | |
| 5308 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(0,0,-3)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),1,1,1,87,87,87,.09,"Brick",1,0,"") | |
| 5309 | Effect(e,modecolor[1],CFrame.new(ref.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),1,1,1,4,4,4,.04,"Sphere",1,0,"") | |
| 5310 | for i=1,5 do | |
| 5311 | Effect(e,modecolor[1],CFrame.new(ref.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),15,15,15,0,0,17,.03,"Sphere",3,4,"") | |
| 5312 | Effect(e,modecolor[2],CFrame.new(ref.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),15,15,15,0,0,17,.03,"Sphere",3,4,"") | |
| 5313 | end | |
| 5314 | ||
| 5315 | ref:Remove() | |
| 5316 | ref2:Remove() | |
| 5317 | sounds(Root,"151304356",4,1.4) | |
| 5318 | hum.JumpPower=hlastjp | |
| 5319 | hum.Jump=true | |
| 5320 | Root.Velocity=(Root.CFrame.lookVector*-200)+(Root.CFrame.upVector*140) | |
| 5321 | CameraShake(160,Root,3,.06) | |
| 5322 | for i=0,1,.07 do | |
| 5323 | swait() | |
| 5324 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -1.03042574e-15, -1.61558713e-27, -1.03042574e-15, 1, 0, -1.61558713e-27, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(0+320*i),0,0),.4) | |
| 5325 | Neck.C0=clerp(Neck.C0,CFrame.new(-9.53674316e-07, 1.44887888, 0.189434841, 1, -4.97405222e-16, 1.34284554e-16, -5.15212872e-16, 0.965436339, -0.260638952, 0, 0.260638922, 0.965436339)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5326 | RS.C0=clerp(RS.C0,CFrame.new(1.51540422, -0.112202689, -0.307236254, 0.977620363, -0.154024214, -0.143300667, 0.0583290868, 0.85290426, -0.518798709, 0.202129334, 0.498829544, 0.842800617)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5327 | LS.C0=clerp(LS.C0,CFrame.new(-1.48163879, -0.0401576161, -0.25233984, 0.953122854, 0.224766985, 0.202574909, -0.10634549, 0.875607669, -0.471170723, -0.283279777, 0.42754069, 0.858464658)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5328 | RH.C0=clerp(RH.C0,CFrame.new(0.510826886, -1.95263195, -0.25531134, 0.99395287, -0.0868650526, -0.0671723336, 0.0699105337, 0.972328365, -0.222912818, 0.084676899, 0.216868788, 0.972521365)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5329 | LH.C0=clerp(LH.C0,CFrame.new(-0.569907069, -2.01232052, -0.401012838, 0.980895638, 0.0914456919, 0.171701759, -0.0345737338, 0.950523734, -0.30872187, -0.191437885, 0.296887517, 0.935526192)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5330 | end | |
| 5331 | ||
| 5332 | cooldisable=false | |
| 5333 | elseif mode=="Jade" then | |
| 5334 | ||
| 5335 | elseif mode=="Psychosis" then | |
| 5336 | sounds(Root,"253253846",3,1) | |
| 5337 | for i=0,1,.2 do | |
| 5338 | swait() | |
| 5339 | for _,c1 in pairs(chr:children()) do | |
| 5340 | if c1:IsA("BasePart")then
| |
| 5341 | clone(c1,0,false,.01) | |
| 5342 | elseif c1:IsA("Accessory")then
| |
| 5343 | end | |
| 5344 | end | |
| 5345 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5346 | ref.Anchored=true | |
| 5347 | ref.CFrame=CFrame.new(Root.Position) | |
| 5348 | coroutine.resume(coroutine.create(function(ph) | |
| 5349 | game:GetService("Debris"):AddItem(ph,5)
| |
| 5350 | swait(40) | |
| 5351 | CameraShake(180,ph,28,.09) | |
| 5352 | Mdamage("None",ph,21,math.random(10,16),0.05,"")
| |
| 5353 | Effect(e,"Really red",CFrame.new(ph.Position),5,5,5,20,20,20,.07,"Sphere",6,0,"") | |
| 5354 | Effect(e,"Really red",CFrame.new(ph.Position),3,3,3,20,20,20,.06,"Brick",1,0,"") | |
| 5355 | sounds(ph,"472579737",4,1) | |
| 5356 | for i=1,5 do | |
| 5357 | Effect(e,"Really red",CFrame.new(ph.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),5,5,5,0,0,20,.02,"Sphere",3,3,"") | |
| 5358 | end | |
| 5359 | end),ref) | |
| 5360 | Root.CFrame=Root.CFrame*CFrame.new(0,0,-20) | |
| 5361 | RJ.C0=clerp(RJ.C0,CFrame.new(4.25987494e-17, -0.909500301, -0.371685356, 1, -3.06927451e-17, -3.53795107e-17, -4.68375339e-17, 0.655302346, 0.755366683, 0, -0.755366683, 0.655302346)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 5362 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.29557359, 0.253260285, 1, 0, 0, 0, 0.778101563, -0.628138363, 0, 0.628138363, 0.778101563)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 5363 | RS.C0=clerp(RS.C0,CFrame.new(1.65384305, 0.108114727, 0.534447134, 0.884393394, -0.414783746, -0.21401605, 0.455847442, 0.669101596, 0.586946547, -0.100257397, -0.616650283, 0.780827105)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 5364 | LS.C0=clerp(LS.C0,CFrame.new(-1.64020479, 0.182953775, 0.517698288, 0.918801248, 0.36581111, 0.148278609, -0.374994308, 0.691683888, 0.617213607, 0.123221673, -0.622700274, 0.772697091)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 5365 | RH.C0=clerp(RH.C0,CFrame.new(0.740991473, -0.779448867, -1.17758226, 0.988452017, -0.0859284624, -0.124815732, -0.0615495183, 0.525009871, -0.848867714, 0.138471365, 0.846747339, 0.513658166)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 5366 | LH.C0=clerp(LH.C0,CFrame.new(-0.600029707, -1.99242985, 0.0082911104, 0.986393631, 0.0762794986, -0.145633489, -0.075461939, 0.997086585, 0.0111380816, 0.146058783, 3.24845314e-06, 0.989275813)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 5367 | end | |
| 5368 | elseif mode=="Conflagration" then | |
| 5369 | ||
| 5370 | elseif mode=="Lullaby" then | |
| 5371 | ||
| 5372 | elseif mode=="Somnambulist" then | |
| 5373 | ||
| 5374 | elseif mode=="Amativeness" then | |
| 5375 | ||
| 5376 | local tor=nil | |
| 5377 | pcall(function() --first time using protect call | |
| 5378 | if mouse.Target.Parent:findFirstChild("HumanoidRootPart") then
| |
| 5379 | tor=mouse.Target.Parent:findFirstChild("HumanoidRootPart")
| |
| 5380 | else | |
| 5381 | if mouse.Target.Parent:findFirstChild("Torso") then
| |
| 5382 | tor=mouse.Target.Parent:findFirstChild("Torso")
| |
| 5383 | elseif mouse.Target.Parent:findFirstChild("UpperTorso") then
| |
| 5384 | tor=mouse.Target.Parent:findFirstChild("UpperTorso")
| |
| 5385 | end | |
| 5386 | end | |
| 5387 | print(tor.Parent) | |
| 5388 | end) | |
| 5389 | if tor then | |
| 5390 | for i=0,1,0.09 do | |
| 5391 | swait() | |
| 5392 | local aim=CFrame.new(Root.Position,tor.Position) | |
| 5393 | local direction=aim.lookVector | |
| 5394 | local heed=math.atan2(direction.x,direction.z) | |
| 5395 | local heed=math.deg(heed) | |
| 5396 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.3) | |
| 5397 | RJ.C0=clerp(RJ.C0,CFrame.new(0, -.2, 0, 1, -1.96717642e-15, -3.23117427e-27, -1.96717642e-15, 1, 0, -3.23117427e-27, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(0-360*i),0),.4) | |
| 5398 | Neck.C0=clerp(Neck.C0,CFrame.new(-6.33697255e-07, 1.50002503, -3.49869879e-07, 0.962869644, -4.6789728e-06, -0.26996693, 8.09900666e-06, 1, 1.15544335e-05, 0.2699669, -1.33118774e-05, 0.962869644)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5399 | RS.C0=clerp(RS.C0,CFrame.new(0.52421999, 0.00754897296, -0.611215413, 0.680111945, 0.652647376, -0.333915055, -0.730811238, 0.639599264, -0.238385886, 0.057989914, 0.406157941, 0.911961079)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5400 | LS.C0=clerp(LS.C0,CFrame.new(-0.94626528, -0.0670981854, -0.294001788, 0.935038984, -0.27199772, 0.2274189, 0.342057198, 0.86081183, -0.376828909, -0.0932682604, 0.430140048, 0.897931278)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5401 | RH.C0=clerp(RH.C0,CFrame.new(0.43720153, -1.80102663, -0.00967041403, 0.988237858, -0.0149661163, -0.152190879, 0.0150305638, 0.999886811, -0.000727051694, 0.152184531, -0.00156901462, 0.988350868)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5402 | LH.C0=clerp(LH.C0,CFrame.new(-0.532050431, -1.7995898, 0.00220155716, 0.997532487, 0.0149647305, 0.0685942918, -0.0150000649, 0.999887526, 5.93299774e-08, -0.0685865805, -0.00102897803, 0.997644663)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5403 | end | |
| 5404 | hum.AutoRotate=false | |
| 5405 | for i=0,1,0.12 do | |
| 5406 | swait() | |
| 5407 | local aim=CFrame.new(Root.Position,tor.Position) | |
| 5408 | local direction=aim.lookVector | |
| 5409 | local heed=math.atan2(direction.x,direction.z) | |
| 5410 | local heed=math.deg(heed) | |
| 5411 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.3) | |
| 5412 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.3115175e-05, -.2, 3.69142144e-05, 0.430280209, -2.18110163e-05, -0.902695417, 2.70808614e-05, 1, -1.12536945e-05, 0.902695417, -1.96035253e-05, 0.430280209)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5413 | Neck.C0=clerp(Neck.C0,CFrame.new(-4.31388617e-06, 1.5000242, 2.50265002e-05, 0.428053796, 0.0517924316, 0.902267992, -2.18365785e-05, 0.998357236, -0.0572978146, -0.9037534, 0.0245068464, 0.427351624)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5414 | RS.C0=clerp(RS.C0,CFrame.new(0.788223445, -0.106733471, -0.606663227, 0.865249813, 0.405094057, -0.295367122, -0.5004884, 0.663603246, -0.556005538, -0.0292280316, 0.628911495, 0.776927531)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5415 | LS.C0=clerp(LS.C0,CFrame.new(-1.90494299, 0.502391815, -0.593524754, -0.0450072289, 0.832695901, -0.551898658, -0.997048557, -0.00304639572, 0.0767127797, 0.0621971041, 0.553722382, 0.830375314)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5416 | RH.C0=clerp(RH.C0,CFrame.new(0.43720153, -1.80102663, -0.00967041403, 0.988237858, -0.0149661163, -0.152190879, 0.0150305638, 0.999886811, -0.000727051694, 0.152184531, -0.00156901462, 0.988350868)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5417 | LH.C0=clerp(LH.C0,CFrame.new(-0.532050431, -1.7995898, 0.00220155716, 0.997532487, 0.0149647305, 0.0685942918, -0.0150000649, 0.999887526, 5.93299774e-08, -0.0685865805, -0.00102897803, 0.997644663)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5418 | end | |
| 5419 | local hea=particles(tor,.5,"Pink","1363974742",.7,1,"Top",3,2,0,1,2,2,55,55,7,44444,false,6) | |
| 5420 | hea.Speed=NRn(12,22) | |
| 5421 | hea.Rotation=NRn(0) | |
| 5422 | hea.Acceleration=Vector3.new(0,12,0) | |
| 5423 | local a=math.random(-360,360) | |
| 5424 | for i=0,330,30 do | |
| 5425 | Effect2(e,modecolor[1],CFrame.new(tor.Position)*CFrame.Angles(math.rad(a),math.rad(a),math.rad(i)),.06,.06,.06,0,0,0,.03,"FileMesh",2,"1419261836") | |
| 5426 | end | |
| 5427 | Effect(e,modecolor[2],CFrame.new(tor.Position),7,7,7,12,12,12,.06,"Sphere",6,0,"") | |
| 5428 | Effect(e,modecolor[1],CFrame.new((LArm.Position+tor.Position)/2,tor.Position)*CFrame.Angles(0,math.rad(90),0),((LArm.Position-tor.Position).magnitude)*5,13,12,0,1,1,.06,"Cylinder",6,0,"") | |
| 5429 | Effect(e,modecolor[2],CFrame.new((LArm.Position+tor.Position)/2,tor.Position)*CFrame.Angles(0,math.rad(90),0),((LArm.Position-tor.Position).magnitude)*5,13,12,0,2,2,.07,"Cylinder",6,0,"") | |
| 5430 | sounds(LArm,"1461989300",3,1.2) | |
| 5431 | sounds(tor,"1407233503",4,1.5) | |
| 5432 | for i=0,1,0.07 do | |
| 5433 | swait() | |
| 5434 | local aim=CFrame.new(Root.Position,tor.Position) | |
| 5435 | local direction=aim.lookVector | |
| 5436 | local heed=math.atan2(direction.x,direction.z) | |
| 5437 | local heed=math.deg(heed) | |
| 5438 | Effect(e,modecolor[2],CFrame.new(tor.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),23,23,23,-1,-1,-1,.07,"Sphere",3,math.random(-30,30)/30,"") | |
| 5439 | Effect(e,modecolor[1],CFrame.new(tor.Position),18,18,18,-.6,-.6,-.6,.03,"Sphere",6,0,"") | |
| 5440 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.3) | |
| 5441 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.3115175e-05, -.2, 3.69142144e-05, 0.430280209, -2.18110163e-05, -0.902695417, 2.70808614e-05, 1, -1.12536945e-05, 0.902695417, -1.96035253e-05, 0.430280209)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5442 | Neck.C0=clerp(Neck.C0,CFrame.new(-4.31388617e-06, 1.5000242, 2.50265002e-05, 0.428053796, 0.0517924316, 0.902267992, -2.18365785e-05, 0.998357236, -0.0572978146, -0.9037534, 0.0245068464, 0.427351624)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5443 | RS.C0=clerp(RS.C0,CFrame.new(0.788223445, -0.106733471, -0.606663227, 0.865249813, 0.405094057, -0.295367122, -0.5004884, 0.663603246, -0.556005538, -0.0292280316, 0.628911495, 0.776927531)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5444 | LS.C0=clerp(LS.C0,CFrame.new(-1.90494299, 0.502391815, -0.593524754, -0.0450072289, 0.832695901, -0.551898658, -0.997048557, -0.00304639572, 0.0767127797, 0.0621971041, 0.553722382, 0.830375314)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5445 | RH.C0=clerp(RH.C0,CFrame.new(0.43720153, -1.80102663, -0.00967041403, 0.988237858, -0.0149661163, -0.152190879, 0.0150305638, 0.999886811, -0.000727051694, 0.152184531, -0.00156901462, 0.988350868)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5446 | LH.C0=clerp(LH.C0,CFrame.new(-0.532050431, -1.7995898, 0.00220155716, 0.997532487, 0.0149647305, 0.0685942918, -0.0150000649, 0.999887526, 5.93299774e-08, -0.0685865805, -0.00102897803, 0.997644663)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5447 | end | |
| 5448 | for i=0,1,0.09 do | |
| 5449 | swait() | |
| 5450 | local aim=CFrame.new(Root.Position,tor.Position) | |
| 5451 | local direction=aim.lookVector | |
| 5452 | local heed=math.atan2(direction.x,direction.z) | |
| 5453 | local heed=math.deg(heed) | |
| 5454 | Effect(e,modecolor[2],CFrame.new(tor.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),23,23,23,-1,-1,-1,.07,"Sphere",3,math.random(-30,30)/30,"") | |
| 5455 | Effect(e,modecolor[1],CFrame.new(tor.Position),18,18,18,-.6,-.6,-.6,.03,"Sphere",6,0,"") | |
| 5456 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.3) | |
| 5457 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.3115175e-05, -.2, 3.69142144e-05, 0.430280209, -2.18110163e-05, -0.902695417, 2.70808614e-05, 1, -1.12536945e-05, 0.902695417, -1.96035253e-05, 0.430280209)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(0+360*i),0),.4) | |
| 5458 | Neck.C0=clerp(Neck.C0,CFrame.new(-4.27663326e-06, 1.50002468, 2.53685139e-05, 0.00403228402, 0.0517931804, 0.998649716, 0.0243288539, 0.998357236, -0.0518762283, -0.999695837, 0.024505185, 0.00276559591)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5459 | RS.C0=clerp(RS.C0,CFrame.new(0.685115814, 0.0816712677, -0.672926188, 0.792065263, 0.588007808, -0.163949519, -0.532939017, 0.535133362, -0.655445099, -0.297672004, 0.606530488, 0.737232864)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5460 | LS.C0=clerp(LS.C0,CFrame.new(-1.65113688, 0.484345734, -0.699151933, -0.0450072289, 0.386343986, -0.921256065, -0.997048557, 0.0400436223, 0.065502964, 0.0621971041, 0.921485245, 0.383401453)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5461 | RH.C0=clerp(RH.C0,CFrame.new(0.43720153, -1.80102663, -0.00967041403, 0.988237858, -0.0149661163, -0.152190879, 0.0150305638, 0.999886811, -0.000727051694, 0.152184531, -0.00156901462, 0.988350868)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5462 | LH.C0=clerp(LH.C0,CFrame.new(-0.532050431, -1.7995898, 0.00220155716, 0.997532487, 0.0149647305, 0.0685942918, -0.0150000649, 0.999887526, 5.93299774e-08, -0.0685865805, -0.00102897803, 0.997644663)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5463 | end | |
| 5464 | for i=0,1,0.04 do | |
| 5465 | swait() | |
| 5466 | tor.CFrame=clerp(tor.CFrame,CFrame.new(LArm.Position),.3) | |
| 5467 | local aim=CFrame.new(Root.Position,tor.Position) | |
| 5468 | local direction=aim.lookVector | |
| 5469 | local heed=math.atan2(direction.x,direction.z) | |
| 5470 | local heed=math.deg(heed) | |
| 5471 | Effect(e,modecolor[2],CFrame.new(tor.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),23,23,23,-1,-1,-1,.07,"Sphere",3,math.random(-30,30)/30,"") | |
| 5472 | Effect(e,modecolor[1],CFrame.new(tor.Position),18,18,18,-.6,-.6,-.6,.03,"Sphere",6,0,"") | |
| 5473 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.3) | |
| 5474 | RJ.C0=clerp(RJ.C0,CFrame.new(-0, -.2, -0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5475 | Neck.C0=clerp(Neck.C0,CFrame.new(-3.10647629e-05, 1.50002599, 1.47419005e-05, 0.478181273, 0, -0.878261149, 0, 1, 0, 0.878261149, 0, 0.478181273)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5476 | RS.C0=clerp(RS.C0,CFrame.new(0.528879404, 0.00788418949, -0.462412, 0.860540211, 0.49479562, -0.121028423, -0.498491228, 0.769154489, -0.399884939, -0.104771763, 0.404448688, 0.908539593)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5477 | LS.C0=clerp(LS.C0,CFrame.new(-0.984403014, 0.416659236, -0.682322085, 0.0856898874, -0.653303862, -0.752230942, -0.991677225, 0.0168912895, -0.127636135, 0.0960913301, 0.756907403, -0.646419108)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5478 | RH.C0=clerp(RH.C0,CFrame.new(0.43720153, -1.80102663, -0.00967041403, 0.988237858, -0.0149661163, -0.152190879, 0.0150305638, 0.999886811, -0.000727051694, 0.152184531, -0.00156901462, 0.988350868)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5479 | LH.C0=clerp(LH.C0,CFrame.new(-0.532050431, -1.7995898, 0.00220155716, 0.997532487, 0.0149647305, 0.0685942918, -0.0150000649, 0.999887526, 5.93299774e-08, -0.0685865805, -0.00102897803, 0.997644663)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5480 | end | |
| 5481 | hum.AutoRotate=true | |
| 5482 | end | |
| 5483 | elseif mode=="Nil" then | |
| 5484 | ||
| 5485 | elseif mode=="Wither" then | |
| 5486 | ||
| 5487 | elseif mode=="True Catastrophe" then | |
| 5488 | ||
| 5489 | elseif mode=="Cyclone" then | |
| 5490 | ||
| 5491 | elseif mode=="Minstrel" then | |
| 5492 | ||
| 5493 | elseif mode=="Sombra" then | |
| 5494 | ||
| 5495 | elseif mode=="Fictitious" then | |
| 5496 | local oring=CFrame.new(mouse.Hit.p+Vector3.new(0,4,0)) | |
| 5497 | local ref1=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,0) | |
| 5498 | ref1.Anchored=true | |
| 5499 | ref1.CFrame=CFrame.new(Root.Position) | |
| 5500 | local reofm=meshs(ref1,"Mesh",Vector3.new(10,10,10),Enum.MeshType.Brick,"") | |
| 5501 | local ref2=ref1:Clone() | |
| 5502 | ref2.Parent=e | |
| 5503 | local ref3=ref1:Clone() | |
| 5504 | ref3.Parent=e | |
| 5505 | local ref4=ref1:Clone() | |
| 5506 | ref4.Parent=e | |
| 5507 | coroutine.resume(coroutine.create(function(f1,f2,f3,f4) | |
| 5508 | sounds(f1,"169445184",3.1,1.2) | |
| 5509 | sounds(f2,"169445184",3.1,1.2) | |
| 5510 | sounds(f3,"169445184",3.1,1.2) | |
| 5511 | sounds(f4,"169445184",3.1,1.2) | |
| 5512 | f1.CFrame=oring*CFrame.new(8,0,8) | |
| 5513 | f2.CFrame=oring*CFrame.new(-8,0,8) | |
| 5514 | f3.CFrame=oring*CFrame.new(-8,0,-8) | |
| 5515 | f4.CFrame=oring*CFrame.new(8,0,-8) | |
| 5516 | Effect(e,"Lime green",CFrame.new(f1.Position),12,12,12,5,5,5,.07,"Brick",6,0,"") | |
| 5517 | Effect(e,"Lime green",CFrame.new(f2.Position),12,12,12,5,5,5,.07,"Brick",6,0,"") | |
| 5518 | Effect(e,"Lime green",CFrame.new(f3.Position),12,12,12,5,5,5,.07,"Brick",6,0,"") | |
| 5519 | Effect(e,"Lime green",CFrame.new(f4.Position),12,12,12,5,5,5,.07,"Brick",6,0,"") | |
| 5520 | swait(30) | |
| 5521 | sounds(f1,"169445226",3.1,1.2) | |
| 5522 | sounds(f2,"169445226",3.1,1.2) | |
| 5523 | sounds(f3,"169445226",3.1,1.2) | |
| 5524 | sounds(f4,"169445226",3.1,1.2) | |
| 5525 | for i=1,20 do | |
| 5526 | swait() | |
| 5527 | Effect(e,"Lime green",CFrame.new(f1.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5528 | Effect(e,"Lime green",CFrame.new(f2.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5529 | Effect(e,"Lime green",CFrame.new(f3.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5530 | Effect(e,"Lime green",CFrame.new(f4.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5531 | f1.CFrame=clerp(f1.CFrame,oring*CFrame.new(15,0,15),.25) | |
| 5532 | f2.CFrame=clerp(f2.CFrame,oring*CFrame.new(-15,0,15),.25) | |
| 5533 | f3.CFrame=clerp(f3.CFrame,oring*CFrame.new(-15,0,-15),.25) | |
| 5534 | f4.CFrame=clerp(f4.CFrame,oring*CFrame.new(15,0,-15),.25) | |
| 5535 | end | |
| 5536 | sounds(f1,"169445226",3.1,1.5) | |
| 5537 | sounds(f2,"169445226",3.1,1.5) | |
| 5538 | sounds(f3,"169445226",3.1,1.5) | |
| 5539 | sounds(f4,"169445226",3.1,1.5) | |
| 5540 | for i=1,25 do | |
| 5541 | swait() | |
| 5542 | Effect(e,"Lime green",CFrame.new(f1.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5543 | Effect(e,"Lime green",CFrame.new(f2.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5544 | Effect(e,"Lime green",CFrame.new(f3.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5545 | Effect(e,"Lime green",CFrame.new(f4.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5546 | f1.CFrame=clerp(f1.CFrame,oring*CFrame.new(-15,0,15),.25) | |
| 5547 | f2.CFrame=clerp(f2.CFrame,oring*CFrame.new(-15,0,-15),.25) | |
| 5548 | f3.CFrame=clerp(f3.CFrame,oring*CFrame.new(15,0,-15),.25) | |
| 5549 | f4.CFrame=clerp(f4.CFrame,oring*CFrame.new(15,0,15),.25) | |
| 5550 | end | |
| 5551 | sounds(f1,"169445226",3.1,1) | |
| 5552 | sounds(f2,"169445226",3.1,1) | |
| 5553 | sounds(f3,"169445226",3.1,1) | |
| 5554 | sounds(f4,"169445226",3.1,1) | |
| 5555 | for i=1,15 do | |
| 5556 | swait() | |
| 5557 | Effect(e,"Lime green",CFrame.new(f1.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5558 | Effect(e,"Lime green",CFrame.new(f2.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5559 | Effect(e,"Lime green",CFrame.new(f3.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5560 | Effect(e,"Lime green",CFrame.new(f4.Position),12,12,12,-.7,-.7,-.7,.07,"Brick",6,0,"") | |
| 5561 | f1.CFrame=clerp(f1.CFrame,oring,.25) | |
| 5562 | f2.CFrame=clerp(f2.CFrame,oring,.25) | |
| 5563 | f3.CFrame=clerp(f3.CFrame,oring,.25) | |
| 5564 | f4.CFrame=clerp(f4.CFrame,oring,.25) | |
| 5565 | end | |
| 5566 | ||
| 5567 | sounds(f1,"299440437",3,1.2) | |
| 5568 | sounds(f1,"161006182",3.5,1.4) | |
| 5569 | f1.Transparency=.6 | |
| 5570 | reofm.Scale=Vector3.new(150,150,150) | |
| 5571 | LockEffect(e,"Lime green",CFrame.new(f1.Position),f1,150,150,150,7,7,7,.04,"Brick",6,0,"") | |
| 5572 | f2:Remove() | |
| 5573 | f3:Remove() | |
| 5574 | f4:Remove() | |
| 5575 | local ref5=ref1:Clone() | |
| 5576 | ref5.Parent=e | |
| 5577 | ref5.Transparency=1 | |
| 5578 | local sa1=ref5.Position | |
| 5579 | local spino=0 | |
| 5580 | local durin=0 | |
| 5581 | --CFrame.new(Root.Position,sa1) | |
| 5582 | for i=1,270 do | |
| 5583 | swait() | |
| 5584 | spino=spino-7 | |
| 5585 | durin=durin+1 | |
| 5586 | if durin>=16 then | |
| 5587 | durin=0 | |
| 5588 | LockEffect(e,"Lime green",f1.CFrame,f1,150,150,150,15,15,15,.12,"Brick",6,0,"") | |
| 5589 | Effect(e,"Dark green",f1.CFrame,16,16,16,43,-.8,-.8,.07,"Brick",6,0,"") | |
| 5590 | Effect(e,"Dark green",f1.CFrame,16,16,16,-.8,43,-.8,.07,"Brick",6,0,"") | |
| 5591 | Effect(e,"Dark green",f1.CFrame,16,16,16,-.8,-.8,43,.07,"Brick",6,0,"") | |
| 5592 | Mdamage("None",f1,15,math.random(15,21),0,"")
| |
| 5593 | sounds(f1,"300916105",3.5,1.5) | |
| 5594 | end | |
| 5595 | Effect(e,"Dark green",f1.CFrame,20,20,20,-1,-1,-1,.07,"Brick",6,0,"") | |
| 5596 | f1.CFrame=CFrame.new(ref5.Position)*CFrame.Angles(0,math.rad(spino),0) | |
| 5597 | ||
| 5598 | if i>=20 then | |
| 5599 | local sa2=ref5.CFrame | |
| 5600 | local hit,pos=rayCast(sa1,sa2.lookVector,3,chr) | |
| 5601 | sa1=sa1+(sa2.lookVector*.5) | |
| 5602 | local a=FindNearestTorso(ref5.Position,999) | |
| 5603 | if a then | |
| 5604 | ref5.CFrame=clerp(ref5.CFrame,CFrame.new(pos,a.Position),.2) | |
| 5605 | else | |
| 5606 | ref5.CFrame=clerp(ref5.CFrame,CFrame.new(pos),.2) | |
| 5607 | end | |
| 5608 | end | |
| 5609 | end | |
| 5610 | LockEffect(e,"Lime green",f1.CFrame,f1,150,150,150,11,11,11,.12,"Brick",6,0,"") | |
| 5611 | Mdamage("None",f1,15,math.random(15,21),0,"")
| |
| 5612 | sounds(f1,"300916105",3.5,1.5) | |
| 5613 | f1.Transparency=1 | |
| 5614 | game:GetService("Debris"):AddItem(f1,3)
| |
| 5615 | ref5:Remove() | |
| 5616 | end),ref1,ref2,ref3,ref4) | |
| 5617 | ||
| 5618 | ||
| 5619 | elseif mode=="Benevolence" then | |
| 5620 | ||
| 5621 | end | |
| 5622 | attack=false | |
| 5623 | end | |
| 5624 | ||
| 5625 | function Skill3() | |
| 5626 | attack=true | |
| 5627 | if mode=="Rust" then | |
| 5628 | ||
| 5629 | elseif mode=="Nova" then | |
| 5630 | ||
| 5631 | elseif mode=="Celestial" then | |
| 5632 | ||
| 5633 | elseif mode=="Glacier" then | |
| 5634 | ||
| 5635 | elseif mode=="Desperation" then | |
| 5636 | ||
| 5637 | elseif mode=="Saint" then | |
| 5638 | local oring=Root.CFrame | |
| 5639 | Root.Anchored=true | |
| 5640 | hum.WalkSpeed=0 | |
| 5641 | hum.JumpPower=0 | |
| 5642 | hum.AutoRotate=false | |
| 5643 | local aaa=0 | |
| 5644 | local bbb=0 | |
| 5645 | local ffly=create("Sound"){
| |
| 5646 | Parent=Root, | |
| 5647 | SoundId="rbxassetid://1959658239", | |
| 5648 | Volume=3.6, | |
| 5649 | PlaybackSpeed=1.1, | |
| 5650 | MaxDistance=66666666, | |
| 5651 | EmitterSize=70, | |
| 5652 | Name="f", | |
| 5653 | Looped=true} | |
| 5654 | ffly:Play() | |
| 5655 | local feass=particles(Torso,.5,"Daisy orange","113787016",.7,1,"Top",5,5,0,1,4,6,55,55,7,44444,false) | |
| 5656 | feass.Rate=50 | |
| 5657 | feass.Transparency=NSn({NSKp(0,1),NSKp(.2,0),NSKp(1,1)})
| |
| 5658 | feass.Speed=NRn(7,22) | |
| 5659 | feass.Acceleration=Vector3.new(0,-2.5,0) | |
| 5660 | sounds(Root,"199145404",3,.9) | |
| 5661 | for i=0,1,0.02 do | |
| 5662 | swait() | |
| 5663 | Root.CFrame=clerp(Root.CFrame,oring*CFrame.new(0,0+150*i,0),.3) | |
| 5664 | Effect(e,modecolor[1],RArm.CFrame*CFrame.Angles(math.rad(math.random(-30,30)),math.random(-120,120),math.rad(math.random(-30,30))),7,7,52,0,0,0,.03,"Sphere",4,math.random(-2,2),"",100,200,50) | |
| 5665 | Effect(e,modecolor[2],LArm.CFrame*CFrame.Angles(math.rad(math.random(-30,30)),math.random(-120,120),math.rad(math.random(-30,30))),7,7,52,0,0,0,.03,"Sphere",4,math.random(-2,2),"",100,200,50) | |
| 5666 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -1.06044173e-15, 1.89630004e-16, -1.07726328e-15, 0.984384954, -0.176029399, 0, 0.176029399, 0.984384954)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5667 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.4006263, 0.219330549, 1, 0, 0, 0, 0.956142604, -0.292901933, 0, 0.292901933, 0.956142604)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5668 | RS.C0=clerp(RS.C0,CFrame.new(1.93161631, 0.0825829357, 0.0803990886, 0.689848244, -0.720472574, -0.0709137022, 0.721046448, 0.675003529, 0.156404465, -0.064818114, -0.159027427, 0.985144198)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5669 | LS.C0=clerp(LS.C0,CFrame.new(-1.80106425, 0.0668534562, 0.158040136, 0.70215416, 0.709542453, 0.0594071932, -0.705922246, 0.68280828, 0.188273042, 0.0930239856, -0.174133554, 0.980318427)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5670 | RH.C0=clerp(RH.C0,CFrame.new(0.557230353, -1.53967953, -0.162601173, 0.991327524, -0.0271800365, -0.128572673, 0.065499112, 0.95038414, 0.304105103, 0.113927841, -0.309889138, 0.943922281)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5671 | LH.C0=clerp(LH.C0,CFrame.new(-0.574335515, -1.97375739, 0.515283942, 0.973524511, 0.128028348, 0.189364016, -0.186353996, 0.924273849, 0.333151698, -0.132371336, -0.359620094, 0.923661888)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5672 | end | |
| 5673 | local oring2=Root.CFrame | |
| 5674 | for i=0,1,0.06 do | |
| 5675 | swait() | |
| 5676 | bbb=bbb+(6-6*i) | |
| 5677 | aaa=aaa-(0+6*i) | |
| 5678 | Effect(e,modecolor[1],RArm.CFrame*CFrame.Angles(math.rad(math.random(-30,30)),math.random(-120,120),math.rad(math.random(-30,30))),7,7,52,0,0,0,.03,"Sphere",4,math.random(-2,2),"",100,200,50) | |
| 5679 | Effect(e,modecolor[2],LArm.CFrame*CFrame.Angles(math.rad(math.random(-30,30)),math.random(-120,120),math.rad(math.random(-30,30))),7,7,52,0,0,0,.03,"Sphere",4,math.random(-2,2),"",100,200,50) | |
| 5680 | Root.CFrame=clerp(Root.CFrame,oring2*CFrame.new(0,bbb,aaa),.3) | |
| 5681 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -1.06044173e-15, 1.89630004e-16, -1.07726328e-15, 0.984384954, -0.176029399, 0, 0.176029399, 0.984384954)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(0-90*i),0,0),.4) | |
| 5682 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.4006263, 0.219330549, 1, 0, 0, 0, 0.956142604, -0.292901933, 0, 0.292901933, 0.956142604)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5683 | RS.C0=clerp(RS.C0,CFrame.new(1.93161631, 0.0825829357, 0.0803990886, 0.689848244, -0.720472574, -0.0709137022, 0.721046448, 0.675003529, 0.156404465, -0.064818114, -0.159027427, 0.985144198)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5684 | LS.C0=clerp(LS.C0,CFrame.new(-1.80106425, 0.0668534562, 0.158040136, 0.70215416, 0.709542453, 0.0594071932, -0.705922246, 0.68280828, 0.188273042, 0.0930239856, -0.174133554, 0.980318427)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5685 | RH.C0=clerp(RH.C0,CFrame.new(0.557230353, -1.53967953, -0.162601173, 0.991327524, -0.0271800365, -0.128572673, 0.065499112, 0.95038414, 0.304105103, 0.113927841, -0.309889138, 0.943922281)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5686 | LH.C0=clerp(LH.C0,CFrame.new(-0.574335515, -1.97375739, 0.515283942, 0.973524511, 0.128028348, 0.189364016, -0.186353996, 0.924273849, 0.333151698, -0.132371336, -0.359620094, 0.923661888)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5687 | end | |
| 5688 | ||
| 5689 | local hits=nil | |
| 5690 | local poss | |
| 5691 | local spin=0 | |
| 5692 | for i=0,300 do | |
| 5693 | swait() | |
| 5694 | spin=spin+31 | |
| 5695 | --Root.Velocity=Root.CFrame.lookVector*(30+1*i) | |
| 5696 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position,mouse.Hit.p)*CFrame.new(0,0,-10-(i/15)),.4) | |
| 5697 | Effect(e,modecolor[1],RArm.CFrame*CFrame.Angles(math.rad(math.random(-30,30)),math.random(-120,120),math.rad(math.random(-30,30))),7,7,52,0,0,0,.03,"Sphere",4,math.random(-2,2),"",100,200,50) | |
| 5698 | Effect(e,modecolor[2],LArm.CFrame*CFrame.Angles(math.rad(math.random(-30,30)),math.random(-120,120),math.rad(math.random(-30,30))),7,7,52,0,0,0,.03,"Sphere",4,math.random(-2,2),"",100,200,50) | |
| 5699 | RJ.C0=clerp(RJ.C0,CFrame.new(-5.538315e-17, 0.0514109693, -0.123744443, 1, -2.98095035e-16, -1.03519835e-15, -1.07726328e-15, 0.27671513, 0.960952044, 0, -0.960952044, 0.276715159)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-10),math.rad(spin*(i/150)),0),.8) | |
| 5700 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.40062618, 0.219330609, 1, 0, 0, 0, 0.748191535, -0.663482904, 0, 0.663482904, 0.748191535)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5701 | RS.C0=clerp(RS.C0,CFrame.new(1.9316144, 0.0825823098, 0.0804000944, 0.689847827, -0.72047317, -0.0709115341, 0.721046746, 0.675003171, 0.156404853, -0.0648199916, -0.159026086, 0.985144317)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5702 | LS.C0=clerp(LS.C0,CFrame.new(-1.80106497, 0.0668566823, 0.15804106, 0.702154338, 0.709542155, 0.0594091117, -0.705922067, 0.682807744, 0.188276082, 0.0930248201, -0.174137071, 0.980317712)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5703 | RH.C0=clerp(RH.C0,CFrame.new(0.557228804, -1.53967369, -0.162598729, 0.991327226, -0.0271795429, -0.12857601, 0.0654999241, 0.950383604, 0.304106891, 0.11393106, -0.309891164, 0.943921208)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5704 | LH.C0=clerp(LH.C0,CFrame.new(-0.638024986, -2.01652718, 0.107170135, 0.973520756, 0.169516563, 0.153367594, -0.186361477, 0.977066696, 0.103005812, -0.132389188, -0.128860131, 0.982786059)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5705 | if i>=30 then | |
| 5706 | hits,poss=rayCast(Root.Position,-Root.CFrame.upVector,7,chr) | |
| 5707 | if hits~=nil then | |
| 5708 | break | |
| 5709 | end | |
| 5710 | end | |
| 5711 | end | |
| 5712 | ||
| 5713 | Effect(e,"Daisy orange",CFrame.new(Root.Position),15,15,15,60,60,60,.02,"Sphere",6,0,"") | |
| 5714 | Effect(e,"Buttermilk",CFrame.new(Root.Position),10,10,10,50,50,50,.02,"Brick",1,0,"") | |
| 5715 | Effect(e,"Daisy orange",CFrame.new(Root.Position)*CFrame.Angles(0,0,math.rad(90)),29999,15,15,0,24,24,.02,"Cylinder",6,0,"") | |
| 5716 | for i=1,6 do | |
| 5717 | Effect(e,"Buttermilk",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),55,55,120,0,0,12,.01,"Sphere",3,math.random(20,60)/5,"") | |
| 5718 | Effect(e,"Daisy orange",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),55,55,120,0,0,12,.01,"Sphere",3,math.random(20,60)/5,"") | |
| 5719 | end | |
| 5720 | sounds(Root,"161107566",4,1.2) | |
| 5721 | ffly:Remove() | |
| 5722 | CameraShake(150,Root,3,.06) | |
| 5723 | Mdamage("None",Root,70,math.random(30,50),0,"")
| |
| 5724 | if hits~=nil then | |
| 5725 | local ref=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5726 | ref.Anchored=true | |
| 5727 | ref.CFrame=CFrame.new(poss) | |
| 5728 | game:GetService("Debris"):AddItem(ref,3)
| |
| 5729 | local randomradnum=math.random(-360,360) | |
| 5730 | for asi=0,360,60 do | |
| 5731 | coroutine.resume(coroutine.create(function() | |
| 5732 | for i=1,15 do | |
| 5733 | swait(5) | |
| 5734 | local radnum=asi | |
| 5735 | local ref2=parts(e,"ref",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5736 | ref2.Anchored=true | |
| 5737 | ref2.CFrame=CFrame.new(ref.Position)*CFrame.Angles(0,math.rad(radnum+randomradnum),0)*CFrame.new(0,0,55+i*35) | |
| 5738 | sounds(ref2,"472579737",4,1.3) | |
| 5739 | game:GetService("Debris"):AddItem(ref2,3)
| |
| 5740 | Mdamage("None",ref2,48,math.random(20,35),0,"")
| |
| 5741 | Effect(e,"Daisy orange",CFrame.new(ref2.Position),15,15,15,30,30,30,.06,"Sphere",6,0,"") | |
| 5742 | Effect(e,"Buttermilk",CFrame.new(ref2.Position),10,10,10,25,25,25,.04,"Brick",1,0,"") | |
| 5743 | Effect(e,"Daisy orange",CFrame.new(ref2.Position)*CFrame.Angles(0,math.rad(math.random(-20,20)),math.rad(90+math.random(-20,20))),29999,15,15,0,14,14,.07,"Cylinder",6,0,"") | |
| 5744 | for i=1,3 do | |
| 5745 | Effect(e,"Buttermilk",CFrame.new(ref2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),35,35,70,0,0,12,.04,"Sphere",3,math.random(20,60)/5,"") | |
| 5746 | Effect(e,"Daisy orange",CFrame.new(ref2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),35,35,70,0,0,12,.04,"Sphere",3,math.random(20,60)/5,"") | |
| 5747 | end | |
| 5748 | end | |
| 5749 | end)) | |
| 5750 | end | |
| 5751 | end | |
| 5752 | Root.Anchored=false | |
| 5753 | feass.Enabled=false | |
| 5754 | game:GetService("Debris"):AddItem(feass,10)
| |
| 5755 | for i=0,1,0.02 do | |
| 5756 | swait() | |
| 5757 | RJ.C0=clerp(RJ.C0,CFrame.new(3.94199234e-16, -0.400776744, -0.177927822, 1, -9.46709455e-16, -2.66809026e-16, -9.83588211e-16, 0.962505937, 0.271260917, 0, -0.271260917, 0.962505937)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5758 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.54496098, -0.122129962, 1, 0, 0, 0, 0.973227203, 0.229845837, 0, -0.229845807, 0.973227203)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5759 | RS.C0=clerp(RS.C0,CFrame.new(1.95043921, 0.240276024, 0.117822066, 0.226150975, -0.964726925, -0.134750858, 0.973055124, 0.230120599, -0.014442876, 0.044942379, -0.127853721, 0.990774393)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5760 | LS.C0=clerp(LS.C0,CFrame.new(-1.98464382, 0.240717337, 0.0138162449, 0.207056001, 0.977830827, 0.0312201269, -0.973831832, 0.209055543, -0.0891494006, -0.0936997682, -0.0119442306, 0.995528996)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5761 | RH.C0=clerp(RH.C0,CFrame.new(0.599731326, -1.56408703, -0.706746459, 0.985468507, 0.048076462, -0.162912369, -0.0577144474, 0.996819735, -0.0549510419, 0.159752414, 0.0635548979, 0.98510927)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5762 | LH.C0=clerp(LH.C0,CFrame.new(-0.55806011, -1.90075397, -0.0938407183, 0.993020236, 0.0728613138, 0.0927476287, -0.0661686882, 0.995112658, -0.0732995272, -0.0976350307, 0.0666508973, 0.99298811)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5763 | end | |
| 5764 | hum.AutoRotate=true | |
| 5765 | elseif mode=="Dreary" then | |
| 5766 | ||
| 5767 | elseif mode=="Jade" then | |
| 5768 | ||
| 5769 | elseif mode=="Psychosis" then | |
| 5770 | ||
| 5771 | elseif mode=="Conflagration" then | |
| 5772 | ||
| 5773 | elseif mode=="Lullaby" then | |
| 5774 | ||
| 5775 | elseif mode=="Somnambulist" then | |
| 5776 | ||
| 5777 | elseif mode=="Amativeness" then | |
| 5778 | ||
| 5779 | elseif mode=="Nil" then | |
| 5780 | ||
| 5781 | elseif mode=="Wither" then | |
| 5782 | ||
| 5783 | elseif mode=="True Catastrophe" then | |
| 5784 | ||
| 5785 | elseif mode=="Cyclone" then | |
| 5786 | hum.AutoRotate=false | |
| 5787 | hum.WalkSpeed=0 | |
| 5788 | hum.JumpPower=0 | |
| 5789 | for i=0,1,0.077 do | |
| 5790 | swait() | |
| 5791 | RJ.C0=clerp(RJ.C0,CFrame.new(-9.53674316e-06, -0.844210982, -0.313206941, 0.749972761, 2.23509407e-08, -0.661468744, 0.414362311, 0.779479563, 0.469803661, 0.515601337, -0.62642765, 0.584588408)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5792 | Neck.C0=clerp(Neck.C0,CFrame.new(0.0362519324, 1.48433745, 0.0338509977, 0.68206358, 0.220626906, 0.69721812, 4.35475749e-06, 0.953403592, -0.301698178, -0.731292903, 0.205780357, 0.650280774)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5793 | RS.C0=clerp(RS.C0,CFrame.new(1.27706802, 0.413453519, 0.737323821, 0.0844195113, -0.0307958424, -0.995954275, 0.988856792, 0.125589803, 0.0799345225, 0.122620083, -0.99160409, 0.0410549939)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5794 | LS.C0=clerp(LS.C0,CFrame.new(-0.792966247, 0.409965932, -0.948061705, 0.804290533, -0.576156676, -0.145465955, -0.0133274747, 0.227243572, -0.973746777, 0.594086826, 0.78511405, 0.175091162)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5795 | RH.C0=clerp(RH.C0,CFrame.new(0.648526013, -1.97334671, -0.0243699253, 0.971660316, -0.210057318, 0.108408481, 0.174871847, 0.947344542, 0.268250585, -0.1590482, -0.241690844, 0.957229972)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5796 | LH.C0=clerp(LH.C0,CFrame.new(-0.949723065, -0.869474649, -0.539314687, 0.556932151, 0.265415996, 0.78700763, 0.213511169, 0.869967997, -0.444487005, -0.802645326, 0.415583968, 0.427843809)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 5797 | end | |
| 5798 | sounds(Root,"93724183",5,1.4) | |
| 5799 | local spon=0 | |
| 5800 | REffect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.new(0,-3,0),800,1,800,-8,0,-8,.01,"Sphere",6,0,"") | |
| 5801 | for i=0,1,.006 do | |
| 5802 | swait() | |
| 5803 | spon=spon+1*(i*25) | |
| 5804 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.new(0,-3,0),120-50*i,1,120-50*i,0,0,0,.1,"Sphere",6,0,"") | |
| 5805 | REffect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(spon),0)*CFrame.new(0,-3,50+40*i),6+17*i,3+1*i,26+21*i,0,0,0,.04,"Sphere",3,-2-2*i,"") | |
| 5806 | REffect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+spon),0)*CFrame.new(0,-3,50+40*i),6+17*i,3+1*i,26+21*i,0,0,0,.04,"Sphere",3,-2-2*i,"") | |
| 5807 | end | |
| 5808 | swait(11) | |
| 5809 | cooldisable=true | |
| 5810 | local oring=Root.Position | |
| 5811 | Root.Anchored=true | |
| 5812 | local spino=0 | |
| 5813 | local Sub1=parts(m,"Sub",Vector3.new(0.100000001, 0.100000001, 0.100000001),"Medium stone grey",Enum.Material.SmoothPlastic,0,1) | |
| 5814 | Sub1.CFrame=CFrame.new(oring) | |
| 5815 | Sub1.Anchored=true | |
| 5816 | Mdamage("Push",Sub1,115,math.random(31,44),0,"")
| |
| 5817 | Effect(e,modecolor[2],CFrame.new(Sub1.Position)*CFrame.Angles(0,math.random(-120,120),0),20,45,20,15,4,15,.01,"FileMesh",2,math.random(-23,-13),"1051557") | |
| 5818 | Effect(e,modecolor[2],CFrame.new(Sub1.Position)*CFrame.Angles(0,math.random(-120,120),0),20,45,20,6,8,6,.007,"FileMesh",2,math.random(-23,-13),"1051557") | |
| 5819 | Effect(e,modecolor[2],CFrame.new(Sub1.Position)*CFrame.Angles(0,math.random(-120,120),0),20,45,20,15,4,15,.01,"FileMesh",2,math.random(-23,-13),"1051557") | |
| 5820 | Effect(e,modecolor[2],CFrame.new(Sub1.Position)*CFrame.Angles(0,math.random(-120,120),0),20,45,20,6,8,6,.007,"FileMesh",2,math.random(-23,-13),"1051557") | |
| 5821 | local s1=sounds(Sub1,"439317756",5,.8) | |
| 5822 | local s2=sounds(Sub1,"1134510159",4.7,.9) | |
| 5823 | s1.EmitterSize=55 | |
| 5824 | s2.EmitterSize=55 | |
| 5825 | Effect(e,modecolor[2],CFrame.new(Sub1.Position),1,1,1,47,47,47,.02,"Sphere",6,0,"") | |
| 5826 | Effect(e,modecolor[1],CFrame.new(Sub1.Position),1,1,1,77,77,77,.03,"Sphere",6,0,"") | |
| 5827 | ||
| 5828 | for i=0,1,0.003 do | |
| 5829 | swait() | |
| 5830 | spino=spino+(71-71*i) | |
| 5831 | Mdamage("Push2",Sub1,17,math.random(12,16),0,"")
| |
| 5832 | Root.CFrame=clerp(Root.CFrame,CFrame.new(oring+Vector3.new(0,0+(spino/11),0))*CFrame.Angles(0,math.rad(spino),0),.4) | |
| 5833 | Effect2(e,modecolor[1],Root.CFrame*CFrame.new(0,4,3.5-3.4*i)*CFrame.Angles(-math.rad(38-36*i),0,0),12-9*i,40-17*i,5-4*i,0,0,0,.05+.05*i,"Sphere",-4+2*i,"") | |
| 5834 | Effect2(e,modecolor[1],Root.CFrame*CFrame.new(0,4,-3.5+3.4*i)*CFrame.Angles(math.rad(38-36*i),0,0),12-9*i,40-17*i,5-4*i,0,0,0,.05+.05*i,"Sphere",-4+2*i,"") | |
| 5835 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(0,4.5,0),13-9*i,80-67*i,13-9*i,0,0,0,.05+.05*i,"Sphere",6,0,"") | |
| 5836 | RJ.C0=clerp(RJ.C0,CFrame.new(-1.23659415e-17, 0.0138956727, -0.0266255401, 1, -8.84600288e-16, 9.70967698e-17, -8.89913143e-16, 0.994029939, -0.109108143, 0, 0.109108143, 0.994029939)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 5837 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.44277024, 0.174582124, 1, 0, 0, 0, 0.950218201, -0.311585546, 0, 0.311585546, 0.95021826)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5838 | RS.C0=clerp(RS.C0,CFrame.new(1.96088147, 0.393745631, -0.410792053, 0.0602539927, -0.96511054, 0.254815936, 0.99645561, 0.0431444682, -0.0722139105, 0.0587005019, 0.258263946, 0.964289427)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5839 | LS.C0=clerp(LS.C0,CFrame.new(-1.93420243, 0.347098231, 0.143364608, -0.228906035, 0.961388469, 0.152755648, 0.0883338153, 0.176789075, -0.980276942, -0.969432533, -0.210897803, -0.125391185)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5840 | RH.C0=clerp(RH.C0,CFrame.new(0.536862016, -1.86034644, 0.360719562, 0.989830136, -0.089269042, -0.11075855, 0.122276448, 0.931801915, 0.34175089, 0.0726972595, -0.351818442, 0.933241248)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5841 | LH.C0=clerp(LH.C0,CFrame.new(-0.551121116, -1.42532074, -0.493729144, 0.959981263, -0.121815555, 0.25218457, 0.0378600843, 0.948632181, 0.314107984, -0.277493626, -0.291990012, 0.915281057)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5842 | end | |
| 5843 | Root.Anchored=false | |
| 5844 | hum.AutoRotate=true | |
| 5845 | cooldisable=false | |
| 5846 | elseif mode=="Minstrel" then | |
| 5847 | ||
| 5848 | elseif mode=="Sombra" then | |
| 5849 | ||
| 5850 | elseif mode=="Fictitious" then | |
| 5851 | ||
| 5852 | elseif mode=="Benevolence" then | |
| 5853 | ||
| 5854 | end | |
| 5855 | attack=false | |
| 5856 | end | |
| 5857 | ||
| 5858 | function Skill4() | |
| 5859 | attack=true | |
| 5860 | if mode=="Rust" then | |
| 5861 | ||
| 5862 | elseif mode=="Nova" then | |
| 5863 | hum.WalkSpeed=0 | |
| 5864 | hum.JumpPower=0 | |
| 5865 | hum.AutoRotate=false | |
| 5866 | sounds(Root,"93724183",8,.9) | |
| 5867 | local r1=parts(e,"b",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,0) | |
| 5868 | r1.CFrame=CFrame.new(RArm.Position) | |
| 5869 | r1.Anchored=true | |
| 5870 | local rm1=meshs(r1,"Mesh",Vector3.new(0,0,0),Enum.MeshType.Sphere,"") | |
| 5871 | local r2=parts(e,"b",Vector3.new(.2,.2,.2),modecolor[2],Enum.Material.Neon,0,0) | |
| 5872 | r2.CFrame=CFrame.new(LArm.Position) | |
| 5873 | r2.Anchored=true | |
| 5874 | local rm2=meshs(r2,"Mesh",Vector3.new(0,0,0),Enum.MeshType.Sphere,"") | |
| 5875 | local chargggg=0 | |
| 5876 | ||
| 5877 | for i=0,1,0.01 do | |
| 5878 | swait() | |
| 5879 | chargggg=chargggg+.2 | |
| 5880 | rm1.Scale=Vector3.new(chargggg,chargggg,chargggg) | |
| 5881 | rm2.Scale=Vector3.new(chargggg,chargggg,chargggg) | |
| 5882 | r1.CFrame=clerp(r1.CFrame,RArm.CFrame*CFrame.new(0,-1.5-(chargggg/9),0),.3) | |
| 5883 | r2.CFrame=clerp(r2.CFrame,LArm.CFrame*CFrame.new(0,-1.5-(chargggg/9),0),.3) | |
| 5884 | Effect(e,modecolor[1],CFrame.new(r1.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120))*CFrame.new(0,0,8+(chargggg/2)),5,5,15+(chargggg/5),0,0,-.3+(chargggg/5),.04,"Sphere",3,-.5-(chargggg/25),"") | |
| 5885 | Effect(e,modecolor[2],CFrame.new(r2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120))*CFrame.new(0,0,8+(chargggg/2)),5,5,15+(chargggg/5),0,0,-.3+(chargggg/5),.04,"Sphere",3,-.5-(chargggg/25),"") | |
| 5886 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 5887 | Neck.C0=clerp(Neck.C0,CFrame.new(-7.21428483e-17, 1.54027879, 0.102422744, 1, -4.56896917e-17, 1.03056563e-17, -4.68375339e-17, 0.975493193, -0.220029861, 0, 0.220029861, 0.975493193)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5888 | RS.C0=clerp(RS.C0,CFrame.new(1.58115625, 1.20690835, -0.0319370031, -0.97391969, -0.208576843, -0.0893105268, 0.202940106, -0.976811767, 0.0682222843, -0.101469159, 0.0483183302, 0.993664622)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5889 | LS.C0=clerp(LS.C0,CFrame.new(-1.56428266, 1.23838198, 0.0388439819, -0.957071245, 0.27441287, 0.0933399051, -0.272547096, -0.961595714, 0.0324326716, 0.098655194, 0.00560085615, 0.995105922)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5890 | RH.C0=clerp(RH.C0,CFrame.new(0.525729477, -1.99885654, 0.00147991814, 0.997231126, -0.0471719168, -0.0574885234, 0.0470937304, 0.998886764, -0.00271490379, 0.0575525947, 3.74639058e-08, 0.998342514)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5891 | LH.C0=clerp(LH.C0,CFrame.new(-0.544029236, -1.99824762, 0.00254844874, 0.997467637, 0.0412523746, 0.0579361841, -0.0413217209, 0.999145925, -1.0872609e-06, -0.0578867383, -0.00239293813, 0.998320341)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5892 | end | |
| 5893 | for i=0,1,0.006 do | |
| 5894 | swait() | |
| 5895 | if i<=.8 then | |
| 5896 | chargggg=chargggg+.3 | |
| 5897 | rm1.Scale=Vector3.new(chargggg,chargggg,chargggg) | |
| 5898 | rm2.Scale=Vector3.new(chargggg,chargggg,chargggg) | |
| 5899 | Effect(e,modecolor[1],CFrame.new(r1.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120))*CFrame.new(0,0,8+(chargggg/2)),5,5,15+(chargggg/5),0,0,-.3+(chargggg/5),.04,"Sphere",3,-.5-(chargggg/25),"") | |
| 5900 | Effect(e,modecolor[2],CFrame.new(r2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120))*CFrame.new(0,0,8+(chargggg/2)),5,5,15+(chargggg/5),0,0,-.3+(chargggg/5),.04,"Sphere",3,-.5-(chargggg/25),"") | |
| 5901 | end | |
| 5902 | r1.CFrame=clerp(r1.CFrame,RArm.CFrame*CFrame.new(0,-1.5-(chargggg/9),0),.3) | |
| 5903 | r2.CFrame=clerp(r2.CFrame,LArm.CFrame*CFrame.new(0,-1.5-(chargggg/9),0),.3) | |
| 5904 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 5905 | Neck.C0=clerp(Neck.C0,CFrame.new(-7.16097271e-17, 1.52889633, -0.0188670754, 1, -4.66326975e-17, -4.37560553e-18, -4.68375339e-17, 0.995626688, 0.0934209153, 0, -0.0934209153, 0.995626688)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5906 | RS.C0=clerp(RS.C0,CFrame.new(1.90904272, 0.506187081, 0.0228479709, 0.00861899927, -0.999930143, -0.00808728766, 0.998078048, 0.00810614228, 0.0614367872, -0.0613669381, -0.00860126782, 0.998078227)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5907 | LS.C0=clerp(LS.C0,CFrame.new(-1.9678936, 0.523730934, 0.0790370181, -0.00427900115, 0.999132335, 0.0414299555, -0.999447227, -0.00563897286, 0.0327647962, 0.0329699926, -0.0412668549, 0.998604059)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5908 | RH.C0=clerp(RH.C0,CFrame.new(0.525729477, -1.99885654, 0.00147991814, 0.997231126, -0.0471719168, -0.0574885234, 0.0470937304, 0.998886764, -0.00271490379, 0.0575525947, 3.74639058e-08, 0.998342514)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5909 | LH.C0=clerp(LH.C0,CFrame.new(-0.544029236, -1.99824762, 0.00254844874, 0.997467637, 0.0412523746, 0.0579361841, -0.0413217209, 0.999145925, -1.0872609e-06, -0.0578867383, -0.00239293813, 0.998320341)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 5910 | end | |
| 5911 | for i=1,8 do | |
| 5912 | Effect(e,modecolor[1],CFrame.new(r1.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),40,40,170,0,0,42,.01,"Sphere",3,math.random(20,60)/7,"") | |
| 5913 | Effect(e,modecolor[2],CFrame.new(r2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),40,40,170,0,0,42,.01,"Sphere",3,math.random(20,60)/7,"") | |
| 5914 | end | |
| 5915 | Effect(e,modecolor[1],Root.CFrame*CFrame.new(.1,0,0),30,30,30,210,210,210,.03,"Sphere",6,0,"") | |
| 5916 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(-.1,0,0),30,30,30,210,210,210,.03,"Sphere",6,0,"") | |
| 5917 | ||
| 5918 | sounds(chr,"133047927",5,.5) | |
| 5919 | sounds(chr,"763717897",5,.5) | |
| 5920 | ||
| 5921 | ||
| 5922 | --heccin | |
| 5923 | local nos=false | |
| 5924 | local b1=parts(e,"b",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5925 | b1.CFrame=Root.CFrame*CFrame.new(15,0,0)*CFrame.Angles(0,-math.rad(90),0) | |
| 5926 | b1.Anchored=true | |
| 5927 | local b2=parts(e,"b",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5928 | b2.CFrame=b1.CFrame*CFrame.new(0,0,-1000) | |
| 5929 | b2.Anchored=true | |
| 5930 | local b3=parts(e,"b",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5931 | b3.CFrame=Root.CFrame*CFrame.new(-15,0,0)*CFrame.Angles(0,math.rad(90),0) | |
| 5932 | b3.Anchored=true | |
| 5933 | local b4=parts(e,"b",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5934 | b4.CFrame=b3.CFrame*CFrame.new(0,0,-1000) | |
| 5935 | b4.Anchored=true | |
| 5936 | local b5=parts(e,"b",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5937 | b5.CFrame=b1.CFrame | |
| 5938 | b5.Anchored=true | |
| 5939 | local b6=parts(e,"b",Vector3.new(.2,.2,.2),modecolor[1],Enum.Material.Neon,0,1) | |
| 5940 | b6.CFrame=b3.CFrame | |
| 5941 | b6.Anchored=true | |
| 5942 | ||
| 5943 | local pe1=particles(r1,.5,modecolor[1],"262059101",1,1,"Front",63,53,0,1.3,2,2,55,55,420,55555,false) | |
| 5944 | local pe2=particles(r2,.5,modecolor[2],"262059101",1,1,"Front",63,53,0,1.3,2,2,55,55,420,55555,false) | |
| 5945 | ||
| 5946 | coroutine.resume(coroutine.create(function() | |
| 5947 | repeat | |
| 5948 | swait(3) | |
| 5949 | for i=0,1,.09 do | |
| 5950 | CameraShake(110,Root,3,.1) | |
| 5951 | Mdamage("None",b5,90,math.random(20,33),0,"")
| |
| 5952 | Mdamage("None",b6,90,math.random(20,33),0,"")
| |
| 5953 | b5.CFrame=b1.CFrame*CFrame.new(0,0,0-2000*i) | |
| 5954 | b6.CFrame=b3.CFrame*CFrame.new(0,0,0-2000*i) | |
| 5955 | end | |
| 5956 | swait(3) | |
| 5957 | for i=0,1,.09 do | |
| 5958 | CameraShake(110,Root,3,.1) | |
| 5959 | Mdamage("None",b5,150,math.random(20,33),0,"")
| |
| 5960 | Mdamage("None",b6,150,math.random(20,33),0,"")
| |
| 5961 | b5.CFrame=b1.CFrame*CFrame.new(0,0,-2000+2000*i) | |
| 5962 | b6.CFrame=b3.CFrame*CFrame.new(0,0,-2000+2000*i) | |
| 5963 | end | |
| 5964 | until nos==true | |
| 5965 | repeat | |
| 5966 | swait(3) | |
| 5967 | for i=0,1,.08 do | |
| 5968 | CameraShake(80,Root,3,.08) | |
| 5969 | Mdamage("None",b5,150,math.random(30,43),0,"")
| |
| 5970 | Mdamage("None",b6,150,math.random(30,43),0,"")
| |
| 5971 | b5.CFrame=b1.CFrame*CFrame.new(0,0,-100-3000*i) | |
| 5972 | b6.CFrame=b3.CFrame*CFrame.new(0,0,-3100+3000*i) | |
| 5973 | end | |
| 5974 | swait(3) | |
| 5975 | for i=0,1,.08 do | |
| 5976 | CameraShake(80,Root,3,.08) | |
| 5977 | Mdamage("None",b5,150,math.random(30,43),0,"")
| |
| 5978 | Mdamage("None",b6,150,math.random(30,43),0,"")
| |
| 5979 | b5.CFrame=b1.CFrame*CFrame.new(0,0,-3100+3000*i) | |
| 5980 | b6.CFrame=b3.CFrame*CFrame.new(0,0,-100-3000*i) | |
| 5981 | end | |
| 5982 | until nos==false | |
| 5983 | b1:Remove() | |
| 5984 | b2:Remove() | |
| 5985 | b3:Remove() | |
| 5986 | b4:Remove() | |
| 5987 | b5:Remove() | |
| 5988 | b6:Remove() | |
| 5989 | end)) | |
| 5990 | local beem=create("Sound"){
| |
| 5991 | Parent=chr, | |
| 5992 | SoundId="rbxassetid://1393058033", | |
| 5993 | Volume=3, | |
| 5994 | PlaybackSpeed=1, | |
| 5995 | MaxDistance=66666666, | |
| 5996 | EmitterSize=70, | |
| 5997 | Name="beaam", | |
| 5998 | Looped=true} | |
| 5999 | beem:Play() | |
| 6000 | local aaaa=0 | |
| 6001 | for i=0,1,0.003 do | |
| 6002 | swait() | |
| 6003 | r1.CFrame=clerp(r1.CFrame,RArm.CFrame*CFrame.new(0,-1.5-(chargggg/9),0),.3) | |
| 6004 | r2.CFrame=clerp(r2.CFrame,LArm.CFrame*CFrame.new(0,-1.5-(chargggg/9),0),.3) | |
| 6005 | Effect(e,modecolor[1],r1.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,63,63,-1,.05,"Sphere",6,0,"") | |
| 6006 | Effect(e,modecolor[2],r2.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,63,63,-1,.05,"Sphere",6,0,"") | |
| 6007 | b1.CFrame=Root.CFrame*CFrame.new(15,0,0)*CFrame.Angles(0,-math.rad(90),0) | |
| 6008 | b2.CFrame=b1.CFrame*CFrame.new(0,0,-2000) | |
| 6009 | b3.CFrame=Root.CFrame*CFrame.new(-15,0,0)*CFrame.Angles(0,math.rad(90),0) | |
| 6010 | b4.CFrame=b3.CFrame*CFrame.new(0,0,-2000) | |
| 6011 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,500,500,0,14,14,.08,"Cylinder",6,0,"") | |
| 6012 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,500,500,0,14,14,.08,"Cylinder",6,0,"") | |
| 6013 | Effect(e,modecolor[1],CFrame.new(b2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),130,130,130,127,127,127,.06,"Brick",6,0,"") | |
| 6014 | Effect(e,modecolor[2],CFrame.new(b4.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),130,130,130,127,127,127,.06,"Brick",6,0,"") | |
| 6015 | aaaa=aaaa+1 | |
| 6016 | if aaaa>=5 then | |
| 6017 | aaaa=0 | |
| 6018 | Effect(e,modecolor[1],r1.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,143,143,-.2,.05,"Sphere",6,0,"") | |
| 6019 | Effect(e,modecolor[2],r2.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,143,143,-.2,.05,"Sphere",6,0,"") | |
| 6020 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,500,500,0,74,74,.08,"Cylinder",6,0,"") | |
| 6021 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,500,500,0,74,74,.08,"Cylinder",6,0,"") | |
| 6022 | end | |
| 6023 | local aim=CFrame.new(Root.Position,mouse.Hit.p) | |
| 6024 | local direction=aim.lookVector | |
| 6025 | local heed=math.atan2(direction.x,direction.z) | |
| 6026 | local heed=math.deg(heed) | |
| 6027 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.04) | |
| 6028 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6029 | Neck.C0=clerp(Neck.C0,CFrame.new(-7.16097271e-17, 1.52889633, -0.0188670754, 1, -4.66326975e-17, -4.37560553e-18, -4.68375339e-17, 0.995626688, 0.0934209153, 0, -0.0934209153, 0.995626688)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6030 | RS.C0=clerp(RS.C0,CFrame.new(1.90904272, 0.506187081, 0.0228479709, 0.00861899927, -0.999930143, -0.00808728766, 0.998078048, 0.00810614228, 0.0614367872, -0.0613669381, -0.00860126782, 0.998078227)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6031 | LS.C0=clerp(LS.C0,CFrame.new(-1.9678936, 0.523730934, 0.0790370181, -0.00427900115, 0.999132335, 0.0414299555, -0.999447227, -0.00563897286, 0.0327647962, 0.0329699926, -0.0412668549, 0.998604059)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6032 | RH.C0=clerp(RH.C0,CFrame.new(0.525729477, -1.99885654, 0.00147991814, 0.997231126, -0.0471719168, -0.0574885234, 0.0470937304, 0.998886764, -0.00271490379, 0.0575525947, 3.74639058e-08, 0.998342514)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6033 | LH.C0=clerp(LH.C0,CFrame.new(-0.544029236, -1.99824762, 0.00254844874, 0.997467637, 0.0412523746, 0.0579361841, -0.0413217209, 0.999145925, -1.0872609e-06, -0.0578867383, -0.00239293813, 0.998320341)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6034 | end | |
| 6035 | ||
| 6036 | for i=0,1,0.01 do | |
| 6037 | swait() | |
| 6038 | r1.CFrame=clerp(r1.CFrame,RArm.CFrame*CFrame.new(0,-1.5-(chargggg/9),0),.1) | |
| 6039 | r2.CFrame=clerp(r2.CFrame,LArm.CFrame*CFrame.new(0,-1.5-(chargggg/9),0),.1) | |
| 6040 | Effect(e,modecolor[1],r1.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,63,63,-1,.05,"Sphere",6,0,"") | |
| 6041 | Effect(e,modecolor[2],r2.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,63,63,-1,.05,"Sphere",6,0,"") | |
| 6042 | b1.CFrame=Root.CFrame*CFrame.new(15,0,0)*CFrame.Angles(0,-math.rad(90+20*i),0) | |
| 6043 | b2.CFrame=b1.CFrame*CFrame.new(0,0,-2000) | |
| 6044 | b3.CFrame=Root.CFrame*CFrame.new(-15,0,0)*CFrame.Angles(0,math.rad(90+20*i),0) | |
| 6045 | b4.CFrame=b3.CFrame*CFrame.new(0,0,-2000) | |
| 6046 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,500,500,0,14,14,.08,"Cylinder",6,0,"") | |
| 6047 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,500,500,0,14,14,.08,"Cylinder",6,0,"") | |
| 6048 | Effect(e,modecolor[1],CFrame.new(b2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),130,130,130,127,127,127,.06,"Brick",6,0,"") | |
| 6049 | Effect(e,modecolor[2],CFrame.new(b4.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),130,130,130,127,127,127,.06,"Brick",6,0,"") | |
| 6050 | aaaa=aaaa+1 | |
| 6051 | if aaaa>=5 then | |
| 6052 | aaaa=0 | |
| 6053 | Effect(e,modecolor[1],r1.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,143,143,-.2,.05,"Sphere",6,0,"") | |
| 6054 | Effect(e,modecolor[2],r2.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,143,143,-.2,.05,"Sphere",6,0,"") | |
| 6055 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,500,500,0,74,74,.08,"Cylinder",6,0,"") | |
| 6056 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,500,500,0,74,74,.08,"Cylinder",6,0,"") | |
| 6057 | end | |
| 6058 | local aim=CFrame.new(Root.Position,mouse.Hit.p) | |
| 6059 | local direction=aim.lookVector | |
| 6060 | local heed=math.atan2(direction.x,direction.z) | |
| 6061 | local heed=math.deg(heed) | |
| 6062 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.04) | |
| 6063 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6064 | Neck.C0=clerp(Neck.C0,CFrame.new(-7.16097469e-17, 1.52889645, -0.018863406, 1, -4.68056675e-17, -1.72741378e-18, -4.68375339e-17, 0.999319613, 0.0368809737, 0, -0.0368809737, 0.999319613)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6065 | RS.C0=clerp(RS.C0,CFrame.new(1.97850072, 0.601430774, 0.373912781, -0.118060045, -0.922474921, -0.367562145, 0.991071522, -0.132557437, 0.0143512385, -0.0619617552, -0.362586021, 0.929888248)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 6066 | LS.C0=clerp(LS.C0,CFrame.new(-1.8516773, 0.672695458, 0.419689476, -0.0730129704, 0.797155917, 0.599342644, -0.993763149, -0.108936489, 0.0238290951, 0.0842857808, -0.593864679, 0.800137997)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.25) | |
| 6067 | RH.C0=clerp(RH.C0,CFrame.new(0.525729477, -1.99885654, 0.00147991814, 0.997231126, -0.0471719168, -0.0574885234, 0.0470937304, 0.998886764, -0.00271490379, 0.0575525947, 3.74639058e-08, 0.998342514)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6068 | LH.C0=clerp(LH.C0,CFrame.new(-0.544029236, -1.99824762, 0.00254844874, 0.997467637, 0.0412523746, 0.0579361841, -0.0413217209, 0.999145925, -1.0872609e-06, -0.0578867383, -0.00239293813, 0.998320341)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6069 | end | |
| 6070 | for i=0,1,0.12 do | |
| 6071 | swait() | |
| 6072 | r1.CFrame=clerp(r1.CFrame,Root.CFrame*CFrame.new(.001,0,-1.5-(chargggg/12)),.1) | |
| 6073 | r2.CFrame=clerp(r2.CFrame,Root.CFrame*CFrame.new(-.001,0,-1.5-(chargggg/12)),.1) | |
| 6074 | Effect(e,modecolor[1],r1.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,63,63,-1,.05,"Sphere",6,0,"") | |
| 6075 | Effect(e,modecolor[2],r2.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,63,63,-1,.05,"Sphere",6,0,"") | |
| 6076 | b1.CFrame=Root.CFrame*CFrame.new(15,0,0)*CFrame.Angles(0,-math.rad(90-90*i),0) | |
| 6077 | b2.CFrame=b1.CFrame*CFrame.new(0,0,-2000) | |
| 6078 | b3.CFrame=Root.CFrame*CFrame.new(-15,0,0)*CFrame.Angles(0,math.rad(90-90*i),0) | |
| 6079 | b4.CFrame=b3.CFrame*CFrame.new(0,0,-2000) | |
| 6080 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,500,500,0,14,14,.08,"Cylinder",6,0,"") | |
| 6081 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,500,500,0,14,14,.08,"Cylinder",6,0,"") | |
| 6082 | Effect(e,modecolor[1],CFrame.new(b2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),130,130,130,127,127,127,.06,"Brick",6,0,"") | |
| 6083 | Effect(e,modecolor[2],CFrame.new(b4.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),130,130,130,127,127,127,.06,"Brick",6,0,"") | |
| 6084 | aaaa=aaaa+1 | |
| 6085 | if aaaa>=5 then | |
| 6086 | aaaa=0 | |
| 6087 | Effect(e,modecolor[1],r1.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,143,143,-.2,.05,"Sphere",6,0,"") | |
| 6088 | Effect(e,modecolor[2],r2.CFrame*CFrame.new(0,-8,0)*CFrame.Angles(math.rad(90),0,0),30,30,121,143,143,-.2,.05,"Sphere",6,0,"") | |
| 6089 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,500,500,0,74,74,.08,"Cylinder",6,0,"") | |
| 6090 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,500,500,0,74,74,.08,"Cylinder",6,0,"") | |
| 6091 | end | |
| 6092 | local aim=CFrame.new(Root.Position,mouse.Hit.p) | |
| 6093 | local direction=aim.lookVector | |
| 6094 | local heed=math.atan2(direction.x,direction.z) | |
| 6095 | local heed=math.deg(heed) | |
| 6096 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.04) | |
| 6097 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6098 | Neck.C0=clerp(Neck.C0,CFrame.new(-7.160978e-17, 1.52889717, -0.0188634358, 1, -4.68056675e-17, -1.72741378e-18, -4.68375339e-17, 0.999319613, 0.0368809737, 0, -0.0368809737, 0.999319613)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6099 | RS.C0=clerp(RS.C0,CFrame.new(0.750076532, 0.442299902, -1.17897594, 0.00861699972, 0.533768892, 0.845586479, 0.998078167, 0.0473030731, -0.0400306173, -0.0613659434, 0.84430635, -0.53233546)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6100 | LS.C0=clerp(LS.C0,CFrame.new(-0.768159986, 0.480110168, -1.08757496, -0.00427800091, -0.446924984, -0.894561291, -0.999447227, 0.031405136, -0.0109104943, 0.0329699926, 0.894020021, -0.446812302)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6101 | RH.C0=clerp(RH.C0,CFrame.new(0.525729418, -1.99885654, 0.00148182176, 0.997231126, -0.0471719168, -0.0574885234, 0.0470937304, 0.998886764, -0.00271490379, 0.0575525947, 3.74639058e-08, 0.998342514)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6102 | LH.C0=clerp(LH.C0,CFrame.new(-0.544028997, -1.99824786, 0.00255226158, 0.997467637, 0.0412523746, 0.0579361841, -0.0413217209, 0.999145925, -1.0872609e-06, -0.0578867383, -0.00239293813, 0.998320341)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6103 | end | |
| 6104 | for i=1,14 do | |
| 6105 | Effect(e,modecolor[1],CFrame.new(r1.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),110,110,170,0,0,82,.01,"Sphere",3,math.random(50,130)/7,"") | |
| 6106 | Effect(e,modecolor[2],CFrame.new(r2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),110,110,170,0,0,82,.01,"Sphere",3,math.random(50,130)/7,"") | |
| 6107 | end | |
| 6108 | CameraShake(30,Root,3,.01) | |
| 6109 | Effect(e,modecolor[1],Root.CFrame*CFrame.new(.1,0,0),30,30,30,210,210,210,.03,"Sphere",6,0,"") | |
| 6110 | Effect(e,modecolor[2],Root.CFrame*CFrame.new(-.1,0,0),30,30,30,210,210,210,.03,"Sphere",6,0,"") | |
| 6111 | ||
| 6112 | beem.PlaybackSpeed=.7 | |
| 6113 | nos=true | |
| 6114 | sounds(chr,"1196176156",6,.8) | |
| 6115 | sounds(chr,"413503439",6,.8) | |
| 6116 | chargggg=200 | |
| 6117 | for i=0,1,0.002 do | |
| 6118 | swait() | |
| 6119 | rm1.Scale=Vector3.new(chargggg,chargggg,chargggg) | |
| 6120 | rm2.Scale=Vector3.new(chargggg,chargggg,chargggg) | |
| 6121 | r1.CFrame=clerp(r1.CFrame,Root.CFrame*CFrame.new(.001,0,-11.5-chargggg),.5) | |
| 6122 | r2.CFrame=clerp(r2.CFrame,Root.CFrame*CFrame.new(-.001,0,-11.5-chargggg),.5) | |
| 6123 | Effect(e,modecolor[1],b1.CFrame*CFrame.new(0,-0,0),70,70,151,153,153,-1,.05,"Sphere",6,0,"") | |
| 6124 | Effect(e,modecolor[2],b3.CFrame*CFrame.new(0,-0,0),70,70,151,153,153,-1,.05,"Sphere",6,0,"") | |
| 6125 | b1.CFrame=Root.CFrame*CFrame.new(15,2,0)*CFrame.Angles(0,0,0) | |
| 6126 | b2.CFrame=b1.CFrame*CFrame.new(0,0,-2000) | |
| 6127 | b3.CFrame=Root.CFrame*CFrame.new(-15,-2,0.01)*CFrame.Angles(0,0,0) | |
| 6128 | b4.CFrame=b3.CFrame*CFrame.new(0,0,-2000) | |
| 6129 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,1200,1200,0,14,14,.08,"Cylinder",6,0,"") | |
| 6130 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,1200,1200,0,14,14,.08,"Cylinder",6,0,"") | |
| 6131 | Effect(e,modecolor[1],CFrame.new(b2.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),210,210,210,197,197,197,.06,"Brick",6,0,"") | |
| 6132 | Effect(e,modecolor[2],CFrame.new(b4.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),210,210,210,197,197,197,.06,"Brick",6,0,"") | |
| 6133 | aaaa=aaaa+1 | |
| 6134 | if aaaa>=5 then | |
| 6135 | aaaa=0 | |
| 6136 | Effect(e,modecolor[1],r1.CFrame*CFrame.new(0,-1,0),70,70,151,283,283,-1,.05,"Sphere",6,0,"") | |
| 6137 | Effect(e,modecolor[2],r2.CFrame*CFrame.new(0,-1,0),70,70,151,283,283,-1,.05,"Sphere",6,0,"") | |
| 6138 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,1200,1200,0,114,114,.08,"Cylinder",6,0,"") | |
| 6139 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,1200,1200,0,114,114,.08,"Cylinder",6,0,"") | |
| 6140 | end | |
| 6141 | local aim=CFrame.new(Root.Position,mouse.Hit.p) | |
| 6142 | local direction=aim.lookVector | |
| 6143 | local heed=math.atan2(direction.x,direction.z) | |
| 6144 | local heed=math.deg(heed) | |
| 6145 | Root.CFrame=clerp(Root.CFrame,CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(heed-180),math.rad(0)),0.04) | |
| 6146 | Root.Velocity=Root.CFrame.lookVector*-110 | |
| 6147 | RJ.C0=clerp(RJ.C0,CFrame.new(2.65203771e-23, -5.66220649e-07, 10, 1, -4.4373429e-17, 1.49917801e-17, -4.68375339e-17, 0.947390378, -0.320080489, 0, 0.320080489, 0.947390378)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6148 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.54765594, -0.109947979, 1, 0, 0, 0, 0.966666222, 0.256040126, 0, -0.256040126, 0.966666222)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6149 | RS.C0=clerp(RS.C0,CFrame.new(0.683153629, 0.0581533015, -1.21961546, 0.00861699972, 0.533768892, 0.845586479, 0.925927639, 0.315060496, -0.208314821, -0.377602845, 0.784746945, -0.491516471)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6150 | LS.C0=clerp(LS.C0,CFrame.new(-0.685598373, 0.120894209, -1.14528656, -0.00427800091, -0.446924984, -0.894561291, -0.936313629, 0.315911323, -0.153352395, 0.351139039, 0.836933851, -0.419813454)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6151 | RH.C0=clerp(RH.C0,CFrame.new(0.561112285, -1.96840513, -0.132424518, 0.997229636, -0.0668219775, -0.0326774903, 0.0630380437, 0.992407203, -0.105613947, 0.0394867025, 0.103261441, 0.993870258)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6152 | LH.C0=clerp(LH.C0,CFrame.new(-0.587659001, -2.02713561, -0.216531113, 0.997466862, 0.064358905, 0.0302954875, -0.0576775633, 0.981032014, -0.185066432, -0.0416315123, 0.182850242, 0.982259035)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6153 | end | |
| 6154 | nos=false | |
| 6155 | Effect(e,modecolor[1],r1.CFrame*CFrame.new(0,-1,0),70,70,151,313,313,-1,.02,"Sphere",6,0,"") | |
| 6156 | Effect(e,modecolor[2],r2.CFrame*CFrame.new(0,-1,0),70,70,151,313,313,-1,.02,"Sphere",6,0,"") | |
| 6157 | Effect(e,modecolor[1],CFrame.new((b1.Position+b2.Position)/2,b2.Position)*CFrame.Angles(0,math.rad(90),0),((b1.Position-b2.Position).magnitude)*5,1200,1200,0,214,214,.04,"Cylinder",6,0,"") | |
| 6158 | Effect(e,modecolor[2],CFrame.new((b3.Position+b4.Position)/2,b4.Position)*CFrame.Angles(0,math.rad(90),0),((b3.Position-b4.Position).magnitude)*5,1200,1200,0,214,214,.04,"Cylinder",6,0,"") | |
| 6159 | r1:Remove() | |
| 6160 | r2:Remove() | |
| 6161 | coroutine.resume(coroutine.create(function(sound) | |
| 6162 | for i=4,0,-.02 do | |
| 6163 | swait() | |
| 6164 | sound.Volume=i | |
| 6165 | end | |
| 6166 | sound:Remove() | |
| 6167 | end),beem) | |
| 6168 | pssounds(Head,"1405841099",4,1,1.1,2) | |
| 6169 | for i=0,1,0.002 do | |
| 6170 | swait() | |
| 6171 | if chargggg>1 then | |
| 6172 | chargggg=chargggg-1 | |
| 6173 | else | |
| 6174 | chargggg=0 | |
| 6175 | end | |
| 6176 | Effect(e,modecolor[1],RArm.CFrame*CFrame.new(0,-1.4,0),chargggg/5,chargggg/5,chargggg/5,0,0,0,.07,"Sphere",6,0,"") | |
| 6177 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.4,0),chargggg/5,chargggg/5,chargggg/5,0,0,0,.07,"Sphere",6,0,"") | |
| 6178 | Effect(e,modecolor[1],RArm.CFrame*CFrame.new(0,-1.4,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),chargggg/5,chargggg/5,chargggg/5,-chargggg/45,-chargggg/45,-chargggg/45,.07,"Sphere",3,chargggg/90,"") | |
| 6179 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(0,-1.4,0)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),chargggg/5,chargggg/5,chargggg/5,-chargggg/45,-chargggg/45,-chargggg/45,.07,"Sphere",3,chargggg/90,"") | |
| 6180 | RJ.C0=clerp(RJ.C0,CFrame.new(-7.30156898e-07, -1.58954287, -0.417309731, 0.992864251, 5.0672287e-07, 0.119250759, -0.0995299891, 0.550817847, 0.828669786, -0.0656850263, -0.834625423, 0.546887398)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 6181 | Neck.C0=clerp(Neck.C0,CFrame.new(0.0164930299, 1.56599212, -0.137325108, 0.992864251, 0.0406638645, -0.112103499, 5.0672287e-07, 0.940063834, 0.34099853, 0.119250759, -0.33856529, 0.933355868)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 6182 | RS.C0=clerp(RS.C0,CFrame.new(1.47595191, 0.308045745, -0.688147485, 0.978854239, -0.17946218, -0.0981730223, -0.0281764083, 0.35706231, -0.9336555, 0.202609748, 0.916678846, 0.344455302)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 6183 | LS.C0=clerp(LS.C0,CFrame.new(-1.32013774, 0.329404235, -1.06252456, 0.999193132, -0.0401528329, 0.0009828154, 0.0107988548, 0.244997367, -0.969463646, 0.0386859253, 0.968692183, 0.245233282)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 6184 | RH.C0=clerp(RH.C0,CFrame.new(0.604998469, -2.03593922, 0.297619581, 0.980971396, -0.0625304878, -0.18380776, 0.111231685, 0.956951916, 0.268086821, 0.159131616, -0.283430696, 0.945697844)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 6185 | LH.C0=clerp(LH.C0,CFrame.new(-0.660171807, -2.07677317, 0.378259897, 0.989416718, 0.143973798, -0.0180670768, -0.130380929, 0.936760008, 0.324779212, 0.0636842251, -0.318986356, 0.945617378)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 6186 | end | |
| 6187 | hum.AutoRotate=true | |
| 6188 | elseif mode=="Celestial" then | |
| 6189 | ||
| 6190 | elseif mode=="Glacier" then | |
| 6191 | ||
| 6192 | elseif mode=="Desperation" then | |
| 6193 | ||
| 6194 | elseif mode=="Saint" then | |
| 6195 | ||
| 6196 | elseif mode=="Dreary" then | |
| 6197 | ||
| 6198 | elseif mode=="Jade" then | |
| 6199 | ||
| 6200 | elseif mode=="Psychosis" then | |
| 6201 | ||
| 6202 | elseif mode=="Conflagration" then | |
| 6203 | ||
| 6204 | elseif mode=="Lullaby" then | |
| 6205 | ||
| 6206 | elseif mode=="Somnambulist" then | |
| 6207 | ||
| 6208 | elseif mode=="Amativeness" then | |
| 6209 | ||
| 6210 | elseif mode=="Nil" then | |
| 6211 | ||
| 6212 | elseif mode=="Wither" then | |
| 6213 | ||
| 6214 | elseif mode=="True Catastrophe" then | |
| 6215 | ||
| 6216 | elseif mode=="Cyclone" then | |
| 6217 | hum.WalkSpeed=0 | |
| 6218 | hum.JumpPower=0 | |
| 6219 | sounds(Root,"588697034",3,.8) | |
| 6220 | local aaaa=0 | |
| 6221 | for i=0,1,0.005 do | |
| 6222 | swait() | |
| 6223 | aaaa=aaaa+1 | |
| 6224 | if aaaa>=13 then | |
| 6225 | aaaa=0 | |
| 6226 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),6+120*i,6+120*i,6+120*i,-.1-9*i,-.1-9*i,-.1-9*i,.06,"Brick",6,0,"") | |
| 6227 | end | |
| 6228 | RJ.C0=clerp(RJ.C0,CFrame.new(-0.0609225035, -0.349407375, -0.0278450549, 0.783426106, -0.212623253, 0.583981931, -1.86445504e-05, 0.939647734, 0.342143357, -0.621485054, -0.268054903, 0.736140609)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6229 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0529611632, 1.46088076, -0.143510982, 0.962722003, -0.0185054541, -0.269859612, 0.0754123926, 0.976462781, 0.202072918, 0.259768367, -0.214890763, 0.94145757)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6230 | RS.C0=clerp(RS.C0,CFrame.new(0.255630672, 0.270662814, -0.841491461, -0.166321695, 0.928941846, 0.330763221, 0.936870813, 0.2535007, -0.240853563, -0.307587624, 0.269823223, -0.912461102)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6231 | LS.C0=clerp(LS.C0,CFrame.new(-1.87335539, 0.089951396, 0.178920537, 0.392104208, 0.916351676, 0.0809571743, -0.901343644, 0.365098536, 0.232986391, 0.183940083, -0.164325267, 0.96910435)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6232 | RH.C0=clerp(RH.C0,CFrame.new(0.959038377, -1.53307605, -0.72085458, 0.817428708, -0.167428285, -0.551160932, -0.0907151699, 0.907470167, -0.410205722, 0.568841994, 0.385312527, 0.726603806)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6233 | LH.C0=clerp(LH.C0,CFrame.new(-0.808551192, -1.91699708, 0.000512048602, 0.954020739, 0.259777963, -0.149533063, -0.26389128, 0.964519203, -0.00800399482, 0.142148197, 0.047096435, 0.988724411)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6234 | end | |
| 6235 | Effect(e,modecolor[2],CFrame.new(Root.Position),1,1,1,65,65,65,.06,"Sphere",6,0,"") | |
| 6236 | Effect(e,modecolor[1],CFrame.new(Root.Position),1,1,1,6,6,6,.03,"Sphere",6,0,"") | |
| 6237 | sounds(Root,"588738198",4,.8) | |
| 6238 | for i=0,1,0.04 do | |
| 6239 | swait() | |
| 6240 | RJ.C0=clerp(RJ.C0,CFrame.new(-0.0609225035, -0.349407375, -0.0278450549, 0.783426106, -0.212623253, 0.583981931, -1.86445504e-05, 0.939647734, 0.342143357, -0.621485054, -0.268054903, 0.736140609)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6241 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0529611632, 1.46088076, -0.143510982, 0.962722003, -0.0185054541, -0.269859612, 0.0754123926, 0.976462781, 0.202072918, 0.259768367, -0.214890763, 0.94145757)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6242 | RS.C0=clerp(RS.C0,CFrame.new(0.255630672, 0.270662814, -0.841491461, -0.166321695, 0.928941846, 0.330763221, 0.936870813, 0.2535007, -0.240853563, -0.307587624, 0.269823223, -0.912461102)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6243 | LS.C0=clerp(LS.C0,CFrame.new(-1.87335539, 0.089951396, 0.178920537, 0.392104208, 0.916351676, 0.0809571743, -0.901343644, 0.365098536, 0.232986391, 0.183940083, -0.164325267, 0.96910435)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6244 | RH.C0=clerp(RH.C0,CFrame.new(0.959038377, -1.53307605, -0.72085458, 0.817428708, -0.167428285, -0.551160932, -0.0907151699, 0.907470167, -0.410205722, 0.568841994, 0.385312527, 0.726603806)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6245 | LH.C0=clerp(LH.C0,CFrame.new(-0.808551192, -1.91699708, 0.000512048602, 0.954020739, 0.259777963, -0.149533063, -0.26389128, 0.964519203, -0.00800399482, 0.142148197, 0.047096435, 0.988724411)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 6246 | end | |
| 6247 | hum.WalkSpeed=6 | |
| 6248 | local torn=create("Sound"){
| |
| 6249 | Parent=chr, | |
| 6250 | SoundId="rbxassetid://1637648744", | |
| 6251 | Volume=4, | |
| 6252 | PlaybackSpeed=1, | |
| 6253 | MaxDistance=66666666, | |
| 6254 | EmitterSize=70, | |
| 6255 | Name="Wind", | |
| 6256 | Looped=true} | |
| 6257 | local spinny=0 | |
| 6258 | local wat=.1 | |
| 6259 | local did=false | |
| 6260 | local wond=particles(Root,.5,"White","1487252021",.7,1,"Back",80,130,0,1,.7,1.4,55,55,120,44444,false) | |
| 6261 | wond.Speed=NRn(100,170) | |
| 6262 | wond.Enabled=false | |
| 6263 | for i=0,1.5,0.0015 do | |
| 6264 | swait() | |
| 6265 | wat=wat+.007 | |
| 6266 | spinny=spinny+19+(i*145) | |
| 6267 | if i>=.25 then | |
| 6268 | wond.Enabled=true | |
| 6269 | if not did then | |
| 6270 | did=true | |
| 6271 | cooldisable=true | |
| 6272 | torn:Play() | |
| 6273 | torn.EmitterSize=70 | |
| 6274 | Effect(e,modecolor[2],CFrame.new(Root.Position),46,46,46,95,95,95,.03,"Sphere",6,0,"") | |
| 6275 | end | |
| 6276 | wond.Speed=NRn(100+110*i,170+110*i) | |
| 6277 | wond.Size=NSn({NSKp(0,80),NSKp(1,130+280*i)})
| |
| 6278 | CameraShake(100,Root,3,.2) | |
| 6279 | Effect(e,modecolor[1],CFrame.new(Root.Position),46,46,46,17+110*i,75+190*i,17+110*i,.07,"Sphere",6,0,"") | |
| 6280 | Effect(e,modecolor[2],CFrame.new(Root.Position),46,1,46,20+80*i,0,20+80*i,.04,"Sphere",6,0,"") | |
| 6281 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,-math.rad(20+spinny),0),12,6,12,5+50*i,1+12*i,5+50*i,.06,"FileMesh",2,math.random(-23,-13),"1051557") | |
| 6282 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,-math.rad(20+spinny),0),12,6,12,5+25*i,1+52*i,5+25*i,.06,"FileMesh",2,math.random(-23,-13),"1051557") | |
| 6283 | REffect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,-math.rad(20+spinny),0)*CFrame.new(0,-3,150+450*i),6+150*i,3+3*i,26+350*i,0,0,0,.04,"Sphere",3,-2-21*i,"") | |
| 6284 | REffect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,-math.rad(90+spinny),0)*CFrame.new(0,-3,150+450*i),6+150*i,3+3*i,26+350*i,0,0,0,.04,"Sphere",3,-2-21*i,"") | |
| 6285 | Mdamage("None",Root,40+220*i,math.random(20,30),.1,"")
| |
| 6286 | else | |
| 6287 | REffect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,-math.rad(20+spinny),0)*CFrame.new(0,-3,20+450*i),6+150*i,3+3*i,26+350*i,0,0,0,.04,"Sphere",3,-1-17*i,"") | |
| 6288 | REffect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,-math.rad(90+spinny),0)*CFrame.new(0,-3,20+450*i),6+150*i,3+3*i,26+350*i,0,0,0,.04,"Sphere",3,-1-17*i,"") | |
| 6289 | Mdamage("None",Root,10,1,0,"")
| |
| 6290 | end | |
| 6291 | hum.WalkSpeed=6 | |
| 6292 | sounds(Root,"1168586995",1.5,.8+2.2*i) | |
| 6293 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 0, -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,-math.rad(20+spinny),0),wat) | |
| 6294 | Neck.C0=clerp(Neck.C0,CFrame.new(-1.55048838e-07, 1.50001931, 1.91373329e-06, 0.892944276, -4.68375339e-17, -0.450167149, 1.35050141e-05, 1, 2.67883279e-05, 0.450167149, -2.99999992e-05, 0.892944276)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6295 | RS.C0=clerp(RS.C0,CFrame.new(1.82802474, 0.694250584, 0.464729995, -0.0969680175, -0.832421303, -0.545593262, 0.976318359, -0.186068714, 0.110367753, -0.193390325, -0.52197057, 0.830750763)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6296 | LS.C0=clerp(LS.C0,CFrame.new(-1.9459908, 0.310187966, -0.4370296, 0.19140403, 0.913549304, -0.358876318, -0.971780241, 0.125025451, -0.200029209, -0.137867868, 0.38703531, 0.911699653)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6297 | RH.C0=clerp(RH.C0,CFrame.new(0.535116136, -1.99771881, 0.00347112119, 0.992949247, -0.0667743534, -0.0979442447, 0.0665349588, 0.997767746, -0.00571202161, 0.098107025, -0.000844968657, 0.99517554)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6298 | LH.C0=clerp(LH.C0,CFrame.new(-0.577040434, -1.99506962, 0.0060280934, 0.994866133, 0.0647972524, 0.077735357, -0.0646003485, 0.997898459, -0.00504769059, -0.0778990686, 4.56493581e-08, 0.996961355)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6299 | end | |
| 6300 | Effect(e,modecolor[2],CFrame.new(Root.Position),46,1,46,107,0,107,.02,"Sphere",6,0,"") | |
| 6301 | hum.WalkSpeed=0 | |
| 6302 | cooldisable=false | |
| 6303 | wond.Enabled=false | |
| 6304 | game:GetService("Debris"):AddItem(wond,4)
| |
| 6305 | coroutine.resume(coroutine.create(function(sound) | |
| 6306 | for i=4,0,-.02 do | |
| 6307 | swait() | |
| 6308 | sound.Volume=i | |
| 6309 | end | |
| 6310 | sound:Remove() | |
| 6311 | end),torn) | |
| 6312 | pssounds(Head,"1405841099",4,1,1.1,2) | |
| 6313 | for i=0,1,0.003 do | |
| 6314 | swait() | |
| 6315 | RJ.C0=clerp(RJ.C0,CFrame.new(-0.148705244, -1.08967888, -0.315730721, 0.727024734, 0.25166297, -0.638827741, 0.287398636, 0.733438492, 0.616011441, 0.623568118, -0.631453693, 0.460900337)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6316 | Neck.C0=clerp(Neck.C0,CFrame.new(-0.0877710432, 1.45781052, 0.0944968164, 0.646650076, -0.0405399427, 0.761708856, 0.311050057, 0.9258039, -0.214791417, -0.696485221, 0.375824451, 0.611281037)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6317 | RS.C0=clerp(RS.C0,CFrame.new(1.89409137, 0.619577706, 0.270545632, -0.108459473, -0.933510303, -0.341753483, 0.986093879, -0.144573912, 0.0819596797, -0.12591885, -0.328111708, 0.936209023)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6318 | LS.C0=clerp(LS.C0,CFrame.new(-1.61957514, -0.240693212, -0.458504736, 0.708091497, 0.526578486, 0.470448524, 0.0836040974, 0.599036932, -0.796344995, -0.701154113, 0.60321641, 0.380148768)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6319 | RH.C0=clerp(RH.C0,CFrame.new(1.04858029, -1.85447443, -0.19052887, 0.584949732, -0.539016426, 0.606048882, 0.522510171, 0.821940362, 0.226709783, -0.620336294, 0.18405287, 0.762435317)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6320 | LH.C0=clerp(LH.C0,CFrame.new(-0.399539828, -1.98179674, 0.287225902, 0.724310756, -0.31699872, 0.612279415, -0.00743031502, 0.884398162, 0.466674119, -0.689433813, -0.34256649, 0.638223648)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6321 | end | |
| 6322 | elseif mode=="Minstrel" then | |
| 6323 | ||
| 6324 | elseif mode=="Sombra" then | |
| 6325 | ||
| 6326 | elseif mode=="Fictitious" then | |
| 6327 | ||
| 6328 | elseif mode=="Benevolence" then | |
| 6329 | ||
| 6330 | end | |
| 6331 | attack=false | |
| 6332 | end | |
| 6333 | ||
| 6334 | ||
| 6335 | local sceeene=false | |
| 6336 | function SCENE() | |
| 6337 | attack=true | |
| 6338 | sceeene=true | |
| 6339 | hum.WalkSpeed=0 | |
| 6340 | hum.JumpPower=0 | |
| 6341 | hum.AutoRotate=false | |
| 6342 | theme.SoundId="rbxassetid://899847720" | |
| 6343 | lastsong="899847720" | |
| 6344 | theme.Parent=chr | |
| 6345 | theme.Volume=2 | |
| 6346 | theme.PlaybackSpeed=1 | |
| 6347 | theme.TimePosition=0 | |
| 6348 | theme:Play() | |
| 6349 | musicset="Global" | |
| 6350 | coroutine.resume(coroutine.create(function() | |
| 6351 | swait(19) | |
| 6352 | sounds(Root,"588734356",4,1.5) | |
| 6353 | Effect(e,"Rust",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6354 | Effect(e,"Dusty Rose",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6355 | Effect(e,"Rust",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6356 | Effect(e,"Dusty Rose",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6357 | swait(19) | |
| 6358 | sounds(Root,"588734356",4,1.5) | |
| 6359 | Effect(e,"Deep blue",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6360 | Effect(e,"Deep orange",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6361 | Effect(e,"Deep blue",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6362 | Effect(e,"Deep orange",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6363 | swait(19) | |
| 6364 | sounds(Root,"588734356",4,1.5) | |
| 6365 | Effect(e,"Pastel light blue",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6366 | Effect(e,"Cool yellow",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6367 | Effect(e,"Pastel light blue",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6368 | Effect(e,"Cool yellow",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6369 | swait(19) | |
| 6370 | sounds(Root,"588734356",4,1.5) | |
| 6371 | Effect(e,"Bright blue",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6372 | Effect(e,"Baby blue",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6373 | Effect(e,"Bright blue",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6374 | Effect(e,"Baby blue",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6375 | swait(19) | |
| 6376 | sounds(Root,"588734356",4,1.5) | |
| 6377 | Effect(e,"Mulberry",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6378 | Effect(e,"Dark indigo",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6379 | Effect(e,"Mulberry",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6380 | Effect(e,"Dark indigo",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6381 | swait(19) | |
| 6382 | sounds(Root,"588734356",4,1.5) | |
| 6383 | Effect(e,"Daisy orange",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6384 | Effect(e,"Buttermilk",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6385 | Effect(e,"Daisy orange",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6386 | Effect(e,"Buttermilk",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6387 | swait(19) | |
| 6388 | sounds(Root,"588734356",4,1.5) | |
| 6389 | Effect(e,"Fossil",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6390 | Effect(e,"Bright red",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6391 | Effect(e,"Fossil",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6392 | Effect(e,"Bright red",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6393 | swait(19) | |
| 6394 | sounds(Root,"588734356",4,1.5) | |
| 6395 | Effect(e,"Forest green",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6396 | Effect(e,"Shamrock",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6397 | Effect(e,"Forest green",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6398 | Effect(e,"Shamrock",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6399 | swait(19) | |
| 6400 | sounds(Root,"588734356",4,1.5) | |
| 6401 | Effect(e,"Really red",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6402 | Effect(e,"Crimson",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6403 | Effect(e,"Really red",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6404 | Effect(e,"Crimson",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6405 | swait(19) | |
| 6406 | sounds(Root,"588734356",4,1.5) | |
| 6407 | Effect(e,"Br. yellowih orange",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6408 | Effect(e,"Neon orange",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6409 | Effect(e,"Br. yellowih orange",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6410 | Effect(e,"Neon orange",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6411 | swait(19) | |
| 6412 | sounds(Root,"588734356",4,1.5) | |
| 6413 | Effect(e,"Navy blue",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6414 | Effect(e,"Lapis",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6415 | Effect(e,"Navy blue",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6416 | Effect(e,"Lapis",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6417 | swait(19) | |
| 6418 | sounds(Root,"588734356",4,1.5) | |
| 6419 | Effect(e,"Alder",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6420 | Effect(e,"Pastel violet",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6421 | Effect(e,"Alder",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6422 | Effect(e,"Pastel violet",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6423 | swait(19) | |
| 6424 | sounds(Root,"588734356",4,1.5) | |
| 6425 | Effect(e,"Carnation pink",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6426 | Effect(e,"Pink",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6427 | Effect(e,"Carnation pink",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6428 | Effect(e,"Pink",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6429 | swait(19) | |
| 6430 | sounds(Root,"588734356",4,1.5) | |
| 6431 | local ran1=Effect(e,"White",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6432 | local ran2=Effect(e,"White",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6433 | local ran3=Effect(e,"White",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6434 | local ran4=Effect(e,"White",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6435 | coroutine.resume(coroutine.create(function(r1,r2,r3,r4) | |
| 6436 | repeat | |
| 6437 | swait() | |
| 6438 | r1.Color=BrickColor.new(nilcolor[math.random(1,#nilcolor)]).Color | |
| 6439 | r2.Color=BrickColor.new(nilcolor[math.random(1,#nilcolor)]).Color | |
| 6440 | r3.Color=BrickColor.new(nilcolor[math.random(1,#nilcolor)]).Color | |
| 6441 | r4.Color=BrickColor.new(nilcolor[math.random(1,#nilcolor)]).Color | |
| 6442 | until r1.Parent==nil | |
| 6443 | end),ran1,ran2,ran3,ran4) | |
| 6444 | swait(19) | |
| 6445 | sounds(Root,"588734356",4,1.5) | |
| 6446 | Effect(e,"Royal purple",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6447 | Effect(e,"Bright violet",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6448 | Effect(e,"Royal purple",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6449 | Effect(e,"Bright violet",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6450 | swait(19) | |
| 6451 | sounds(Root,"588734356",4,1.5) | |
| 6452 | Effect(e,"Magenta",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6453 | Effect(e,"Bright reddish lilac",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6454 | Effect(e,"Magenta",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6455 | Effect(e,"Bright reddish lilac",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6456 | swait(19) | |
| 6457 | sounds(Root,"588734356",4,1.5) | |
| 6458 | Effect(e,"Mint",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6459 | Effect(e,"White",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6460 | Effect(e,"Mint",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6461 | Effect(e,"White",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6462 | swait(19) | |
| 6463 | sounds(Root,"588734356",4,1.5) | |
| 6464 | local ran5=Effect(e,"White",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6465 | local ran6=Effect(e,"White",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6466 | local ran7=Effect(e,"White",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6467 | local ran8=Effect(e,"White",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6468 | coroutine.resume(coroutine.create(function(r1,r2,r3,r4) | |
| 6469 | repeat | |
| 6470 | swait() | |
| 6471 | local radcolor2=function(col) | |
| 6472 | return math.rad(col/255*360) | |
| 6473 | end | |
| 6474 | local sine2=math.deg(tick()*3) | |
| 6475 | local rs2=math.abs(math.sin(radcolor2(sine2 + 10))) | |
| 6476 | local g2=math.abs(math.sin(radcolor2(sine2 + 85))) | |
| 6477 | local b2=math.abs(math.sin(radcolor2(sine2 + 170))) | |
| 6478 | local ra1d=Color3.new(150/255*rs2,150/255*g2,150/255*b2) | |
| 6479 | r1.Color=ra1d | |
| 6480 | r2.Color=ra1d | |
| 6481 | r3.Color=ra1d | |
| 6482 | r4.Color=ra1d | |
| 6483 | until r1.Parent==nil | |
| 6484 | end),ran5,ran6,ran7,ran8) | |
| 6485 | swait(19) | |
| 6486 | sounds(Root,"588734356",4,1.5) | |
| 6487 | Effect(e,"Really black",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6488 | Effect(e,"Smoky grey",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6489 | Effect(e,"Really black",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6490 | Effect(e,"Smoky grey",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6491 | swait(19) | |
| 6492 | sounds(Root,"588734356",4,1.5) | |
| 6493 | Effect(e,"Lime green",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6494 | Effect(e,"Dark green",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6495 | Effect(e,"Lime green",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6496 | Effect(e,"Dark green",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6497 | swait(19) | |
| 6498 | sounds(Root,"588734356",4,1.5) | |
| 6499 | Effect(e,"New Yeller",Root.CFrame,34,34,34,6,6,6,.04,"Sphere",6,0,"") | |
| 6500 | Effect(e,"Wheat",Root.CFrame,28,28,28,6,6,6,.03,"Brick",1,0,"") | |
| 6501 | Effect(e,"New Yeller",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.02,0,0.02,.05,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6502 | Effect(e,"Wheat",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01,.01,.01,0.023,0,0.023,.06,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6503 | end)) | |
| 6504 | local bbbb=create("Sound"){
| |
| 6505 | Parent=chr, | |
| 6506 | SoundId="rbxassetid://1106011352", | |
| 6507 | Volume=5, | |
| 6508 | PlaybackSpeed=.99, | |
| 6509 | MaxDistance=66666666, | |
| 6510 | Name="h", | |
| 6511 | } | |
| 6512 | local pitch=create("PitchShiftSoundEffect"){
| |
| 6513 | Parent=bbbb, | |
| 6514 | Octave=1.1, | |
| 6515 | Priority=2, | |
| 6516 | Enabled=true | |
| 6517 | } | |
| 6518 | bbbb:Play() | |
| 6519 | for i=0,1,0.003 do | |
| 6520 | swait() | |
| 6521 | RJ.C0=clerp(RJ.C0,CFrame.new(7.90665181e-16, -0.888474584, -0.103190288, 1, -8.74984293e-16, -1.62320603e-16, -8.89913143e-16, 0.983224392, 0.18240051, 0, -0.182400495, 0.983224392)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6522 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.39045787, -0.333752513, 1, 0, 0, 0, 0.69015336, 0.72366333, 0, -0.72366333, 0.69015336)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6523 | RS.C0=clerp(RS.C0,CFrame.new(0.513662994, 0.366876334, -0.648799419, 0.150392085, 0.653805733, 0.741566181, 0.913243771, 0.195409685, -0.357492834, -0.378639996, 0.730994761, -0.567695856)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6524 | LS.C0=clerp(LS.C0,CFrame.new(-0.577621937, 0.241150022, -0.49050945, 0.0792420059, -0.788343132, -0.610111415, -0.831878126, 0.284939051, -0.476223528, 0.54927206, 0.545275271, -0.633226156)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6525 | RH.C0=clerp(RH.C0,CFrame.new(0.529608369, -1.15183091, -0.792967141, 0.992787778, -0.0781879127, -0.090879105, 0.0462495685, 0.949162662, -0.311370105, 0.11060442, 0.304921329, 0.945933402)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6526 | LH.C0=clerp(LH.C0,CFrame.new(-0.689086437, -1.66652882, 0.703186154, 0.976166487, 0.111023322, 0.186475262, -0.215613052, 0.398331523, 0.891539872, 0.024702739, -0.910497665, 0.412775934)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.1) | |
| 6527 | end | |
| 6528 | local aaaaaaaaaaa=create("Sound"){
| |
| 6529 | Parent=chr, | |
| 6530 | SoundId="rbxassetid://898407368", | |
| 6531 | Volume=4, | |
| 6532 | PlaybackSpeed=.4, | |
| 6533 | MaxDistance=66666666, | |
| 6534 | EmitterSize=40, | |
| 6535 | Name="a", | |
| 6536 | } | |
| 6537 | aaaaaaaaaaa:Play() | |
| 6538 | Root.Anchored=true | |
| 6539 | for i=0,1,0.003 do | |
| 6540 | swait() | |
| 6541 | RJ.C0=clerp(RJ.C0,CFrame.new(7.90665128e-16, 0+3*i, -0.103190526, 1, -8.81507029e-16, -1.22028212e-16, -8.89913143e-16, 0.990553975, 0.137123734, 0, -0.137123734, 0.990553975)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6542 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.28379917, -0.458435208, 1, 0, 0, 0, 0.563259363, 0.826280236, 0, -0.826280236, 0.563259363)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6543 | RS.C0=clerp(RS.C0,CFrame.new(0.377941519, 0.146628588, -0.71543026, 0.0160290059, 0.670690298, 0.741564333, 0.830754519, 0.403785288, -0.383150905, -0.556408405, 0.622199357, -0.550706744)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6544 | LS.C0=clerp(LS.C0,CFrame.new(-0.649980903, 0.15853703, -0.573485672, 0.0280089993, -0.791821122, -0.610110581, -0.784066558, 0.36119011, -0.504758954, 0.620044649, 0.492505133, -0.610723794)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6545 | RH.C0=clerp(RH.C0,CFrame.new(0.560044289, -1.33567655, -0.616201997, 0.992787898, -0.0423615351, -0.112150185, 0.051272735, 0.995649457, 0.0778038204, 0.108366363, -0.0829929113, 0.990640759)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6546 | LH.C0=clerp(LH.C0,CFrame.new(-0.620171309, -1.95321918, 0.433834553, 0.996040225, 0.0874377713, 0.0160805471, -0.0863595828, 0.908609152, 0.40862155, 0.0211180225, -0.408392191, 0.912562311)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6547 | end | |
| 6548 | ||
| 6549 | ||
| 6550 | if didcc then | |
| 6551 | colorcor2=create("ColorCorrectionEffect"){
| |
| 6552 | Parent=game:GetService("Lighting"),
| |
| 6553 | Brightness=0, | |
| 6554 | TintColor=Color3.new(1,1,1) | |
| 6555 | } | |
| 6556 | end | |
| 6557 | ||
| 6558 | local oooo=create("Frame"){
| |
| 6559 | Name="h", | |
| 6560 | Parent=MainGui, | |
| 6561 | BackgroundTransparency=1, | |
| 6562 | BackgroundColor3=Color3.new(1,0,0), | |
| 6563 | AnchorPoint=Vector2.new(.5,.5), | |
| 6564 | Position=UDim2.new(.5,0,.5,0), | |
| 6565 | Size=UDim2.new(1,0,1,0), | |
| 6566 | ZIndex=99 | |
| 6567 | } | |
| 6568 | ||
| 6569 | local hai=0 | |
| 6570 | local hai2=1 | |
| 6571 | local eeeeee=false | |
| 6572 | for i=0,1,0.0034 do | |
| 6573 | swait() | |
| 6574 | if i>=.4 then | |
| 6575 | if hai>=-1 then | |
| 6576 | hai=hai-.02 | |
| 6577 | if didcc then | |
| 6578 | colorcor2.Contrast=hai | |
| 6579 | end | |
| 6580 | else | |
| 6581 | if didcc then | |
| 6582 | colorcor2.Contrast=-1 | |
| 6583 | end | |
| 6584 | end | |
| 6585 | if hai2>0 then | |
| 6586 | hai2=hai2-.02 | |
| 6587 | if didcc then | |
| 6588 | colorcor2.TintColor=Color3.new(1,hai2,hai2) | |
| 6589 | end | |
| 6590 | else | |
| 6591 | if didcc then | |
| 6592 | colorcor2.TintColor=Color3.new(1,0,0) | |
| 6593 | end | |
| 6594 | oooo.BackgroundTransparency=oooo.BackgroundTransparency-.04 | |
| 6595 | end | |
| 6596 | end | |
| 6597 | if i>=.65 then | |
| 6598 | Effect(e,"Bright red",CFrame.new(Root.Position)*CFrame.Angles(0,0,math.rad(90)),29999,30,30,0,6+120*i,6+120*i,.06,"Cylinder",6,0,"") | |
| 6599 | if not eeeeee then | |
| 6600 | eeeeee=true | |
| 6601 | sounds(chr,"151304356",4,1.2) | |
| 6602 | CameraShake(120,Root,3,.02) | |
| 6603 | Effect(e,"Bright red",CFrame.new(Root.Position),30,30,30,120,120,120,.007,"Sphere",6,0,"") | |
| 6604 | Effect(e,"Black",CFrame.new(Root.Position),30,30,30,80,80,80,.007,"Sphere",6,0,"") | |
| 6605 | for i=1,16 do | |
| 6606 | Effect(e,"Bright red",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),60,60,210,0,0,62,.006,"Sphere",3,math.random(20,60)/3,"") | |
| 6607 | Effect(e,"Black",CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),60,60,210,0,0,62,.006,"Sphere",3,math.random(20,60)/3,"") | |
| 6608 | end | |
| 6609 | end | |
| 6610 | end | |
| 6611 | Effect(e,"Bright red",CFrame.new(Root.Position-Vector3.new(0,3,0)),4,6,4,3+12*i,-.09-.2*i,3+12*i,.05,"FileMesh",2,math.random(-21,21),"20329976") | |
| 6612 | Effect(e,"Black",CFrame.new(Root.Position-Vector3.new(0,3,0)),5,1,5,3+21*i,0+.1*i,3+21*i,.05,"FileMesh",2,math.random(-21,21),"20329976") | |
| 6613 | Effect(e,"Bright red",CFrame.new(Torso.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01+.01*i,.01+.002*i,.01+.005*i,0.008+.045*i,0+.007*i,0.008+.045*i,.04,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6614 | Effect(e,"Black",CFrame.new(Torso.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.03+.01*i,.002+.01*i,.01+.005*i,0.008+.045*i,0+.007*i,0.008+.045*i,.04,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6615 | RJ.C0=clerp(RJ.C0,CFrame.new(8.0110735e-16, 3, -0.00556911528, 1, -8.83554043e-16, 1.06197047e-16, -8.89913143e-16, 0.992854238, -0.119334169, 0, 0.119334169, 0.992854238)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.07) | |
| 6616 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.500687, -0.130288333, 1, 0, 0, 0, 0.999960244, -0.00893263519, 0, 0.00893263519, 0.999960244)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.07) | |
| 6617 | RS.C0=clerp(RS.C0,CFrame.new(0.553437829, 1.26738191, -0.689517856, -0.107157975, 0.134779975, 0.985064268, 0.730266452, -0.661679804, 0.169973746, 0.674706161, 0.737573385, -0.0275210254)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(10),0,0),.03) | |
| 6618 | LS.C0=clerp(LS.C0,CFrame.new(-0.550792873, 1.09681273, -0.911650717, 0.317305148, -0.516378164, -0.795406222, -0.703134537, -0.690914273, 0.168046087, -0.636332929, 0.505955637, -0.582313895)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.03) | |
| 6619 | RH.C0=clerp(RH.C0,CFrame.new(0.550908804, -1.42025781, -0.279402405, 0.992787778, -0.0396943614, -0.113123454, 0.0771497786, 0.933785558, 0.349417597, 0.0917631388, -0.355624974, 0.930113256)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.07) | |
| 6620 | LH.C0=clerp(LH.C0,CFrame.new(-0.62327081, -1.958915, 0.558546841, 0.996040225, 0.0889021456, -0.000622689608, -0.0781466663, 0.878834844, 0.470683128, 0.0423919819, -0.468770653, 0.882302225)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.07) | |
| 6621 | end | |
| 6622 | oooo.BackgroundTransparency=0 | |
| 6623 | bbbb:Remove() | |
| 6624 | hai=-1 | |
| 6625 | hlastjp=200 | |
| 6626 | hlastws=350 | |
| 6627 | mode="Exhaustion" | |
| 6628 | modecolor={"Black","Bright red"}
| |
| 6629 | modeMaterial={"Neon","Neon"}
| |
| 6630 | aaaaaaaaaaa:Remove() | |
| 6631 | if didcc then | |
| 6632 | colorcor=create("ColorCorrectionEffect"){
| |
| 6633 | Parent=game:GetService("Lighting"),
| |
| 6634 | Brightness=-.1, | |
| 6635 | TintColor=Color3.new(1,10/255,10/255) | |
| 6636 | } | |
| 6637 | coroutine.resume(coroutine.create(function() | |
| 6638 | repeat | |
| 6639 | swait() | |
| 6640 | if colorcor.Parent==nil then | |
| 6641 | colorcor=create("ColorCorrectionEffect"){
| |
| 6642 | Parent=game:GetService("Lighting"),
| |
| 6643 | Brightness=-.1, | |
| 6644 | TintColor=Color3.new(1,10/255,10/255) | |
| 6645 | } | |
| 6646 | end | |
| 6647 | until mode~="Exhaustion" or died | |
| 6648 | colorcor.TintColor=Color3.new(1,1,1) | |
| 6649 | colorcor.Brightness=1 | |
| 6650 | for i=1,0,-.02 do | |
| 6651 | swait() | |
| 6652 | colorcor.Brightness=i | |
| 6653 | end | |
| 6654 | colorcor:Remove() | |
| 6655 | end)) | |
| 6656 | end | |
| 6657 | for i=0,1,0.006 do | |
| 6658 | swait() | |
| 6659 | if didcc then | |
| 6660 | if hai<0 then | |
| 6661 | hai=hai+.01 | |
| 6662 | colorcor2.Contrast=hai | |
| 6663 | else | |
| 6664 | colorcor2.Contrast=0 | |
| 6665 | end | |
| 6666 | end | |
| 6667 | oooo.BackgroundTransparency=oooo.BackgroundTransparency+.04 | |
| 6668 | RJ.C0=clerp(RJ.C0,CFrame.new(8.72875446e-16, 3, 0.0629569292, 1, -8.34839379e-16, 3.08202573e-16, -8.89913143e-16, 0.938113272, -0.346328825, 0, 0.346328825, 0.938113272)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 6669 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.67064559, 0.332315087, 1, 0, 0, 0, 0.805889606, -0.59206599, 0, 0.59206599, 0.805889606)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 6670 | RS.C0=clerp(RS.C0,CFrame.new(1.86862934, 0.267060518, 0.592388749, 0.0273579992, -0.851368308, -0.523854673, 0.86469847, 0.283089399, -0.414918363, 0.501546025, -0.441624939, 0.743921518)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 6671 | LS.C0=clerp(LS.C0,CFrame.new(-1.63848305, 0.115716144, 0.190168887, 0.409409046, 0.806367755, 0.426796645, -0.813955069, 0.534147024, -0.228395224, -0.412142634, -0.253886253, 0.87503171)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 6672 | RH.C0=clerp(RH.C0,CFrame.new(0.550906003, -1.42025614, -0.279394597, 0.992787898, -0.0396923833, -0.11312259, 0.0771471038, 0.933787704, 0.34941256, 0.0917634666, -0.355619639, 0.930115223)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 6673 | LH.C0=clerp(LH.C0,CFrame.new(-0.623270631, -1.9589169, 0.558546543, 0.996039987, 0.0889048502, -0.000623053871, -0.0781489387, 0.87883538, 0.470681906, 0.0423934646, -0.468769312, 0.88230294)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 6674 | end | |
| 6675 | oooo:Remove() | |
| 6676 | if didcc then | |
| 6677 | colorcor2:Remove() | |
| 6678 | end | |
| 6679 | Root.Anchored=false | |
| 6680 | for i=0,1,0.008 do | |
| 6681 | swait() | |
| 6682 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.6980914e-06, -0.449588776, -0.621427, 1.00000405, -3.05084882e-07, -2.14314809e-07, -3.52038143e-07, 0.683214366, 0.730217874, 8.19638544e-08, -0.730220675, 0.683217108)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6683 | Neck.C0=clerp(Neck.C0,CFrame.new(3.3774129e-06, 1.55029535, -0.203696936, 1.00000405, -2.1180395e-07, -3.06474135e-07, -3.05084882e-07, 0.930489659, 0.366323978, -2.14314809e-07, -0.366327554, 0.93048799)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6684 | RS.C0=clerp(RS.C0,CFrame.new(1.55914211, 0.105042607, -0.488349229, 0.971694648, -0.205122992, -0.117210031, 0.0728064924, 0.731983721, -0.677422583, 0.224749923, 0.649711311, 0.726198792)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6685 | LS.C0=clerp(LS.C0,CFrame.new(-1.36498392, 0.0252597928, -0.471892148, 0.975959957, 0.181520477, 0.120668024, -0.066244483, 0.774426937, -0.629189193, -0.207658514, 0.606064022, 0.767833531)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6686 | RH.C0=clerp(RH.C0,CFrame.new(0.527435601, -1.24733436, -1.08605909, 0.997010171, -0.0417864509, -0.0650296211, -0.023887625, 0.633549213, -0.77333504, 0.0735140666, 0.772573233, 0.630657017)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6687 | LH.C0=clerp(LH.C0,CFrame.new(-0.529738009, -1.69837046, -0.59661448, 0.995207369, 0.0850940943, -0.0482228845, -0.0972723961, 0.809545159, -0.578944743, -0.0102261677, 0.580857992, 0.813941836)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.05) | |
| 6688 | end | |
| 6689 | for i=0,1,0.03 do | |
| 6690 | swait() | |
| 6691 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.69809118e-06, -0.449589759, -0.621427298, 1.00000405, -3.05084882e-07, -2.14314809e-07, -3.52038143e-07, 0.683214366, 0.730217874, 8.19638544e-08, -0.730220675, 0.683217108)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6692 | Neck.C0=clerp(Neck.C0,CFrame.new(3.37741335e-06, 1.55029404, -0.2036964, 1.00000405, -2.1180395e-07, -3.06474135e-07, -3.05084882e-07, 0.930489659, 0.366323978, -2.14314809e-07, -0.366327554, 0.93048799)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6693 | RS.C0=clerp(RS.C0,CFrame.new(1.09735763, 1.14085054, 0.101528078, 0.929944932, 0.260669202, 0.259341896, 0.276643097, -0.960609555, -0.026458703, 0.242228076, 0.0963519588, -0.96542412)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6694 | LS.C0=clerp(LS.C0,CFrame.new(-1.01801181, 1.29164231, -0.00174318254, 0.945636749, -0.145743698, -0.290747434, -0.19062683, -0.972692013, -0.132416338, -0.263508052, 0.180643693, -0.94759351)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6695 | RH.C0=clerp(RH.C0,CFrame.new(0.527431786, -1.24733424, -1.08605933, 0.997010171, -0.0417864509, -0.0650296211, -0.023887625, 0.633549213, -0.77333504, 0.0735140666, 0.772573233, 0.630657017)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6696 | LH.C0=clerp(LH.C0,CFrame.new(-0.52973789, -1.69836974, -0.596616387, 0.995207369, 0.0850940943, -0.0482228845, -0.0972723961, 0.809545159, -0.578944743, -0.0102261677, 0.580857992, 0.813941836)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6697 | end | |
| 6698 | sounds(Head,"904785563",6,1.1) | |
| 6699 | for i=0,1,0.02 do | |
| 6700 | swait() | |
| 6701 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.69809118e-06, -0.449589759, -0.621427298, 1.00000405, -3.05084882e-07, -2.14314809e-07, -3.52038143e-07, 0.683214366, 0.730217874, 8.19638544e-08, -0.730220675, 0.683217108)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6702 | Neck.C0=clerp(Neck.C0,CFrame.new(-5.51342964e-07, 1.55029273, -0.203691781, 0.541459799, -4.10384786e-07, -0.840729117, 0.30798924, 0.930483699, 0.198356107, 0.782282114, -0.366338432, 0.503818274)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 6703 | RS.C0=clerp(RS.C0,CFrame.new(1.07990503, 1.10379744, 0.208959132, 0.864635706, 0.496511579, 0.0767169446, 0.414764553, -0.791609168, 0.448695391, 0.283510685, -0.356136322, -0.890387833)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 6704 | LS.C0=clerp(LS.C0,CFrame.new(-1.0347203, 1.28519344, -0.676189542, 0.90989852, -0.398329914, 0.115854032, -0.161703363, -0.597751915, -0.785205007, 0.382021934, 0.69572264, -0.608301938)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 6705 | RH.C0=clerp(RH.C0,CFrame.new(0.527431786, -1.24733424, -1.08605933, 0.997010171, -0.0417864509, -0.0650296211, -0.023887625, 0.633549213, -0.77333504, 0.0735140666, 0.772573233, 0.630657017)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6706 | LH.C0=clerp(LH.C0,CFrame.new(-0.52973789, -1.69836974, -0.596616387, 0.995207369, 0.0850940943, -0.0482228845, -0.0972723961, 0.809545159, -0.578944743, -0.0102261677, 0.580857992, 0.813941836)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6707 | end | |
| 6708 | sounds(Head,"904785563",6,1) | |
| 6709 | for i=0,1,0.02 do | |
| 6710 | swait() | |
| 6711 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.69809118e-06, -0.449589759, -0.621427298, 1.00000405, -3.05084882e-07, -2.14314809e-07, -3.52038143e-07, 0.683214366, 0.730217874, 8.19638544e-08, -0.730220675, 0.683217108)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6712 | Neck.C0=clerp(Neck.C0,CFrame.new(5.12599945e-06, 1.5502938, -0.203690082, 0.655167878, -1.91248034e-07, 0.755486131, -0.276759863, 0.930484593, 0.240009785, -0.702966273, -0.366335988, 0.609621525)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 6713 | RS.C0=clerp(RS.C0,CFrame.new(0.961473227, 1.14321971, -0.452726394, 0.660558939, 0.539085031, 0.52254492, 0.745713413, -0.390416354, -0.539897025, -0.0870417878, 0.746301711, -0.659893572)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 6714 | LS.C0=clerp(LS.C0,CFrame.new(-1.13187551, 1.24667835, 0.189129144, 0.741248131, -0.462994277, 0.485995352, -0.586029112, -0.799430013, 0.132226065, 0.327299654, -0.382817239, -0.863902688)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.5) | |
| 6715 | RH.C0=clerp(RH.C0,CFrame.new(0.527431786, -1.24733424, -1.08605933, 0.997010171, -0.0417864509, -0.0650296211, -0.023887625, 0.633549213, -0.77333504, 0.0735140666, 0.772573233, 0.630657017)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6716 | LH.C0=clerp(LH.C0,CFrame.new(-0.52973789, -1.69836974, -0.596616387, 0.995207369, 0.0850940943, -0.0482228845, -0.0972723961, 0.809545159, -0.578944743, -0.0102261677, 0.580857992, 0.813941836)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6717 | end | |
| 6718 | for i=0,1,0.04 do | |
| 6719 | swait() | |
| 6720 | RJ.C0=clerp(RJ.C0,CFrame.new(-3.78099935e-06, -0.158763409, -0.0750562772, 1.00000203, -2.27956491e-07, 1.09870058e-07, -1.08033419e-07, 0.983680904, -0.179922536, 1.49011612e-08, 0.179922953, 0.983682692)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6721 | Neck.C0=clerp(Neck.C0,CFrame.new(3.81469727e-06, 1.39496338, 0.12226066, 1, 0, 0, 0, 0.954540431, -0.298081815, 0, 0.298081815, 0.954540431)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6722 | RS.C0=clerp(RS.C0,CFrame.new(1.09804785, 1.22872341, -0.208669543, 0.971693993, 0.187399939, 0.143847808, 0.228428841, -0.900612712, -0.369753003, 0.06025948, 0.392145723, -0.917927504)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6723 | LS.C0=clerp(LS.C0,CFrame.new(-1.07678545, 1.33759367, -0.218646467, 0.957844853, -0.267927229, -0.103674248, -0.287172467, -0.903099477, -0.319286317, -0.00808266178, 0.335599124, -0.941970468)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6724 | RH.C0=clerp(RH.C0,CFrame.new(0.527427793, -1.97241783, -0.0230476558, 0.997008145, -0.0417861268, -0.065029569, 0.048926495, 0.992458284, 0.112396836, 0.0598424971, -0.115242213, 0.991533339)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6725 | LH.C0=clerp(LH.C0,CFrame.new(-0.529738069, -1.80455089, 0.621008813, 0.995205343, 0.0850941762, -0.0482228063, -0.0611958914, 0.926340163, 0.371684432, 0.0762989074, -0.366951287, 0.927105963)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 6726 | end | |
| 6727 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6728 | pssounds(chr,"1413550336",7,.99,1.15,2) | |
| 6729 | sounds(chr,"239000203",5,.6) | |
| 6730 | CameraShake(70,Root,3,.01) | |
| 6731 | Mdamage("None",Root,80,1,0,"")
| |
| 6732 | for i=1,10 do | |
| 6733 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.01+.02*i,.01+.01*i,.01+.02*i,0.023+.02*i,0+.02*i,0.023+.02*i,.01,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6734 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),.03+.02*i,.01+.01*i,.03+.02*i,0.023+.02*i,0+.02*i,0.023+.02*i,.01,"FileMesh",2,math.random(-42,42),"662585058") | |
| 6735 | end | |
| 6736 | for i=0,1,0.004 do | |
| 6737 | swait() | |
| 6738 | if i>=.9 then | |
| 6739 | Neck.C0=clerp(Neck.C0,CFrame.new(1.52587891e-05, 1.46438098, 0.162369549, 1, 0, 0, 0, 0.869634032, -0.493697166, 0, 0.493697166, 0.869634032)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),1) | |
| 6740 | else | |
| 6741 | Neck.C0=clerp(Neck.C0,CFrame.new(1.52587891e-05, 1.46438098, 0.162369549, 1, 0, 0, 0, 0.869634032, -0.493697166, 0, 0.493697166, 0.869634032)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(math.random(-10,10)),math.rad(math.random(-10,10)),math.rad(math.random(-10,10))),1) | |
| 6742 | end | |
| 6743 | RJ.C0=clerp(RJ.C0,CFrame.new(-1.5169102e-05, -0.527916968, -0.582974195, 1.00000203, -2.36807267e-07, -8.92071128e-08, -1.08033419e-07, 0.808918715, 0.587920606, 1.49011612e-08, -0.587921679, 0.808920264)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6744 | RS.C0=clerp(RS.C0,CFrame.new(1.59466457, -0.00625419617, 0.392211348, -0.629480064, -0.670996666, -0.391814232, -0.0442290902, 0.534379125, -0.844087005, 0.775756955, -0.514006317, -0.366058528)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6745 | LS.C0=clerp(LS.C0,CFrame.new(-1.60806954, 0.187746406, 0.407652617, -0.770509124, 0.62188226, 0.139922246, 0.370453209, 0.615507483, -0.695640147, -0.518729329, -0.48416239, -0.704632401)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6746 | RH.C0=clerp(RH.C0,CFrame.new(0.537724316, -1.27610803, -0.940951169, 0.997008264, -0.0281633493, -0.0719824955, -0.00956071727, 0.879175425, -0.476402372, 0.0767023414, 0.475665271, 0.876275837)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6747 | LH.C0=clerp(LH.C0,CFrame.new(-0.630433917, -1.98154593, -0.0169565752, 0.995205224, 0.0977284536, -0.00397620536, -0.0974515006, 0.994218946, 0.0450787246, 0.00835868716, -0.044475019, 0.998975575)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.4) | |
| 6748 | end | |
| 6749 | sceeene=false | |
| 6750 | hum.AutoRotate=true | |
| 6751 | attack=false | |
| 6752 | end | |
| 6753 | ||
| 6754 | mouse.Button1Down:connect(function() | |
| 6755 | if died then | |
| 6756 | return | |
| 6757 | end | |
| 6758 | if attack==false then | |
| 6759 | idling=0 | |
| 6760 | Attack() | |
| 6761 | end | |
| 6762 | end) | |
| 6763 | ||
| 6764 | ||
| 6765 | local showed=false | |
| 6766 | mouse.KeyDown:connect(function(k) | |
| 6767 | k=k:lower() | |
| 6768 | --lol rip keyboard | |
| 6769 | if died then | |
| 6770 | return | |
| 6771 | end | |
| 6772 | if attack==false then | |
| 6773 | --skills | |
| 6774 | if k=="z" then | |
| 6775 | idling=0 | |
| 6776 | Skill1() | |
| 6777 | elseif k=="x" then | |
| 6778 | idling=0 | |
| 6779 | Skill2() | |
| 6780 | elseif k=="c" then | |
| 6781 | idling=0 | |
| 6782 | Skill3() | |
| 6783 | elseif k=="v" then | |
| 6784 | idling=0 | |
| 6785 | Skill4() | |
| 6786 | end | |
| 6787 | --mode change | |
| 6788 | if page==1 then | |
| 6789 | if k=="q" and mode~="Rust" then --Rust | |
| 6790 | hlastjp=40 | |
| 6791 | hlastws=16 | |
| 6792 | mode="Rust" | |
| 6793 | modecolor={"Rust","Dusty Rose"}
| |
| 6794 | modeMaterial={"CorrodedMetal","Neon"}
| |
| 6795 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6796 | theme.SoundId="rbxassetid://1588725965" | |
| 6797 | lastsong="1588725965" | |
| 6798 | elseif k=="e" and mode~="Nova" then --Nova | |
| 6799 | hlastjp=50 | |
| 6800 | hlastws=24 | |
| 6801 | mode="Nova" | |
| 6802 | modecolor={"Deep blue","Deep orange"}
| |
| 6803 | modeMaterial={"Glass","Neon"}
| |
| 6804 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6805 | theme.SoundId="rbxassetid://1506771862" | |
| 6806 | lastsong="1506771862" | |
| 6807 | elseif k=="r" and mode~="Celestial" then --Celestial | |
| 6808 | hlastjp=50 | |
| 6809 | hlastws=30 | |
| 6810 | ||
| 6811 | mode="Celestial" | |
| 6812 | modecolor={"Pastel light blue","Cool yellow"}
| |
| 6813 | modeMaterial={"Neon","Marble"}
| |
| 6814 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6815 | theme.SoundId="rbxassetid://1553685745" | |
| 6816 | lastsong="1553685745" | |
| 6817 | elseif k=="t" and mode~="Glacier" then --Glacier | |
| 6818 | hlastjp=50 | |
| 6819 | hlastws=18 | |
| 6820 | mode="Glacier" | |
| 6821 | modecolor={"Bright blue","Baby blue"}
| |
| 6822 | modeMaterial={"Neon","Ice"}
| |
| 6823 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6824 | theme.SoundId="rbxassetid://463231847" | |
| 6825 | lastsong="463231847" | |
| 6826 | elseif k=="y" and mode~="Desperation" then --Desperation | |
| 6827 | hlastjp=80 | |
| 6828 | hlastws=34 | |
| 6829 | mode="Desperation" | |
| 6830 | modecolor={"Mulberry","Dark indigo"}
| |
| 6831 | modeMaterial={"Neon","Neon"}
| |
| 6832 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6833 | theme.SoundId="rbxassetid://1506772596" | |
| 6834 | lastsong="1506772596" | |
| 6835 | elseif k=="u" and mode~="Saint" then --Saint | |
| 6836 | hlastjp=60 | |
| 6837 | hlastws=60 | |
| 6838 | ||
| 6839 | mode="Saint" | |
| 6840 | modecolor={"Daisy orange","Buttermilk"}
| |
| 6841 | modeMaterial={"Neon","SmoothPlastic"}
| |
| 6842 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6843 | theme.SoundId="rbxassetid://1444036716" | |
| 6844 | lastsong="1444036716" | |
| 6845 | end | |
| 6846 | elseif page==2 then | |
| 6847 | if k=="q" and mode~="Dreary" then --Dreary | |
| 6848 | hlastjp=50 | |
| 6849 | hlastws=22 | |
| 6850 | ||
| 6851 | mode="Dreary" | |
| 6852 | modecolor={"Fossil","Bright red"}
| |
| 6853 | modeMaterial={"Foil","Neon"}
| |
| 6854 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6855 | theme.SoundId="rbxassetid://1252665473" | |
| 6856 | lastsong="1252665473" | |
| 6857 | elseif k=="e" and mode~="Jade" then --Jade | |
| 6858 | hlastjp=65 | |
| 6859 | hlastws=22 | |
| 6860 | ||
| 6861 | mode="Jade" | |
| 6862 | modecolor={"Forest green","Shamrock"}
| |
| 6863 | modeMaterial={"Neon","Glass"}
| |
| 6864 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6865 | theme.SoundId="rbxassetid://641175763" | |
| 6866 | lastsong="641175763" | |
| 6867 | elseif k=="r" then --Psychosis | |
| 6868 | hlastjp=30 | |
| 6869 | hlastws=10 | |
| 6870 | ||
| 6871 | mode="Psychosis" | |
| 6872 | modecolor={"Really red","Crimson"}
| |
| 6873 | modeMaterial={"Neon","DiamondPlate"}
| |
| 6874 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6875 | theme.SoundId="rbxassetid://1588724716" | |
| 6876 | lastsong="1588724716" | |
| 6877 | elseif k=="t" and mode~="Conflagration" then --Conflagration | |
| 6878 | hlastjp=50 | |
| 6879 | hlastws=25 | |
| 6880 | ||
| 6881 | mode="Conflagration" | |
| 6882 | modecolor={"Br. yellowish orange","Neon orange"}
| |
| 6883 | modeMaterial={"Neon","Neon"}
| |
| 6884 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6885 | theme.SoundId="rbxassetid://1538860798" | |
| 6886 | lastsong="1538860798" | |
| 6887 | elseif k=="y" then --Lullaby -> Somnambulist | |
| 6888 | hlastjp=60 | |
| 6889 | hlastws=18 | |
| 6890 | if mode~="Lullaby" then | |
| 6891 | ||
| 6892 | mode="Lullaby" | |
| 6893 | modecolor={"Navy blue","Lapis"}
| |
| 6894 | modeMaterial={"Glass","SmoothPlastic"}
| |
| 6895 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6896 | theme.SoundId="rbxassetid://1215691669" | |
| 6897 | lastsong="1215691669" | |
| 6898 | else | |
| 6899 | hlastjp=120 | |
| 6900 | hlastws=45 | |
| 6901 | mode="Somnambulist" | |
| 6902 | modecolor={"Alder","Pastel violet"}
| |
| 6903 | modeMaterial={"Neon","SmoothPlastic"}
| |
| 6904 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6905 | theme.SoundId="rbxassetid://943708987" | |
| 6906 | lastsong="943708987" | |
| 6907 | end | |
| 6908 | elseif k=="u" and mode~="Amativeness" then --Amativeness | |
| 6909 | hlastjp=60 | |
| 6910 | hlastws=22 | |
| 6911 | mode="Amativeness" | |
| 6912 | modecolor={"Carnation pink","Pink"}
| |
| 6913 | modeMaterial={"SmoothPlastic","Neon"}
| |
| 6914 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6915 | theme.SoundId="rbxassetid://1587322940" | |
| 6916 | lastsong="1587322940" | |
| 6917 | elseif k=="p" and mode~="Nil" then --Nil | |
| 6918 | if true1 then | |
| 6919 | hlastjp=250 | |
| 6920 | hlastws=150 | |
| 6921 | mode="Nil" | |
| 6922 | modecolor={"White","White"}
| |
| 6923 | modeMaterial={"Neon","Neon"}
| |
| 6924 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6925 | theme.SoundId="rbxassetid://1931001768" | |
| 6926 | lastsong="1931001768" | |
| 6927 | end | |
| 6928 | end | |
| 6929 | elseif page==3 then | |
| 6930 | if k=="q" then --Wither -> True Catastrophe | |
| 6931 | if mode~="Wither" then | |
| 6932 | hlastjp=90 | |
| 6933 | hlastws=80 | |
| 6934 | mode="Wither" | |
| 6935 | modecolor={"Royal purple","Bright violet"}
| |
| 6936 | modeMaterial={"Neon","Neon"}
| |
| 6937 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6938 | theme.SoundId="rbxassetid://1453054770" | |
| 6939 | lastsong="1453054770" | |
| 6940 | else | |
| 6941 | if true1 then | |
| 6942 | hlastjp=150 | |
| 6943 | hlastws=200 | |
| 6944 | mode="True Catastrophe" | |
| 6945 | modecolor={"Magenta","Bright reddish lilac"}
| |
| 6946 | modeMaterial={"Neon","Neon"}
| |
| 6947 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6948 | theme.SoundId="rbxassetid://1037245665" | |
| 6949 | lastsong="1037245665" | |
| 6950 | end | |
| 6951 | end | |
| 6952 | elseif k=="e" and mode~="Cyclone" then --Cyclone | |
| 6953 | hlastjp=50 | |
| 6954 | hlastws=300 | |
| 6955 | mode="Cyclone" | |
| 6956 | modecolor={"Mint","White"}
| |
| 6957 | modeMaterial={"Neon","Ice"}
| |
| 6958 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6959 | theme.SoundId="rbxassetid://1566013104" | |
| 6960 | lastsong="1566013104" | |
| 6961 | elseif k=="r" and mode~="Minstrel" then --Minstrel | |
| 6962 | hlastjp=60 | |
| 6963 | hlastws=24 | |
| 6964 | mode="Minstrel" | |
| 6965 | modecolor={"White","Really black"}
| |
| 6966 | modeMaterial={"Neon","Neon"}
| |
| 6967 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6968 | MusicIDText.Text="Put Music ID here" | |
| 6969 | theme.SoundId="" | |
| 6970 | lastsong="" | |
| 6971 | elseif k=="t" and mode~="Sombra" then --Sombra | |
| 6972 | hlastjp=35 | |
| 6973 | hlastws=30 | |
| 6974 | ||
| 6975 | mode="Sombra" | |
| 6976 | modecolor={"Really black","Smoky grey"}
| |
| 6977 | modeMaterial={"Glass","Glass"}
| |
| 6978 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6979 | theme.SoundId="rbxassetid://202708376" | |
| 6980 | lastsong="202708376" | |
| 6981 | elseif k=="y" and mode~="Fictitious" then --Fictitious | |
| 6982 | hlastjp=50 | |
| 6983 | hlastws=24 | |
| 6984 | ||
| 6985 | mode="Fictitious" | |
| 6986 | modecolor={"Lime green","Dark green"}
| |
| 6987 | modeMaterial={"Neon","SmoothPlastic"}
| |
| 6988 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6989 | theme.SoundId="rbxassetid://1484897961" | |
| 6990 | lastsong="1484897961" | |
| 6991 | elseif k=="u" and mode~="Benevolence" then --Benevolence | |
| 6992 | hlastjp=60 | |
| 6993 | hlastws=20 | |
| 6994 | ||
| 6995 | mode="Benevolence" | |
| 6996 | modecolor={"New Yeller","Wheat"}
| |
| 6997 | modeMaterial={"Neon","Marble"}
| |
| 6998 | modechangeframehhhhhhh(modecolor[1],modecolor[2]) | |
| 6999 | theme.SoundId="rbxassetid://1188211449" | |
| 7000 | lastsong="1188211449" | |
| 7001 | elseif k=="[" and mode~="Exhaustion" then --Exhaustion | |
| 7002 | if true2 then | |
| 7003 | SCENE() | |
| 7004 | idling=0 | |
| 7005 | end | |
| 7006 | end | |
| 7007 | end | |
| 7008 | end | |
| 7009 | --others | |
| 7010 | if k=="f" then | |
| 7011 | if page==1 then | |
| 7012 | page=2 | |
| 7013 | QQQ.Text="[Q] Dreary" | |
| 7014 | EEE.Text="[E] Jade" | |
| 7015 | RRR.Text="[R] Psychosis" | |
| 7016 | TTT.Text="[T] Conflagration" | |
| 7017 | YYY.Text="[Y] Lullaby - Somnambulist" | |
| 7018 | UUU.Text="[U] Amativeness" | |
| 7019 | PPP.Text="" | |
| 7020 | if plr.userId==33104243 or plr.userId==5719877 or plr.userId==98888707 then | |
| 7021 | PPP.Text="[P] Nil" | |
| 7022 | end | |
| 7023 | elseif page==2 then | |
| 7024 | page=3 | |
| 7025 | if true1 then | |
| 7026 | QQQ.Text="[Q] Wither - T-Catastrophe" | |
| 7027 | else | |
| 7028 | QQQ.Text="[Q] Wither" | |
| 7029 | end | |
| 7030 | EEE.Text="[E] Cyclone" | |
| 7031 | RRR.Text="[R] Minstrel" | |
| 7032 | TTT.Text="[T] Sombra" | |
| 7033 | YYY.Text="[Y] Fictitious" | |
| 7034 | UUU.Text="[U] Benevolence" | |
| 7035 | if true1 then | |
| 7036 | PPP.Text="[P] Exhaustion" | |
| 7037 | else | |
| 7038 | PPP.Text="" | |
| 7039 | end | |
| 7040 | elseif page==3 then | |
| 7041 | page=1 | |
| 7042 | QQQ.Text="[Q] Rust" | |
| 7043 | EEE.Text="[E] Nova" | |
| 7044 | RRR.Text="[R] Celestial" | |
| 7045 | TTT.Text="[T] Glacier" | |
| 7046 | YYY.Text="[Y] Desperation" | |
| 7047 | UUU.Text="[U] Saint" | |
| 7048 | PPP.Text="" | |
| 7049 | end | |
| 7050 | elseif k=="g" then | |
| 7051 | if not showed then | |
| 7052 | showed=true | |
| 7053 | HnS.Text="[G] Hide" | |
| 7054 | PageFrame:TweenPosition(UDim2.new(1.02,0,.4,0), "Out", "Quart", .6,true) | |
| 7055 | else | |
| 7056 | showed=false | |
| 7057 | HnS.Text="[G] Show" | |
| 7058 | PageFrame:TweenPosition(UDim2.new(1.305,0,.4,0), "Out", "Quart", .6,true) | |
| 7059 | end | |
| 7060 | elseif k=="b" then | |
| 7061 | idling=1499 | |
| 7062 | end | |
| 7063 | --music | |
| 7064 | if k=="n" and nameguisetting==false then | |
| 7065 | if namegui==true then | |
| 7066 | nameguisetting=true | |
| 7067 | coroutine.resume(coroutine.create(function() | |
| 7068 | for i=0,1.1,0.03 do | |
| 7069 | swait() | |
| 7070 | for _,c in pairs(ModeNameBill:children()) do | |
| 7071 | if c:IsA("Frame") then
| |
| 7072 | if c.Name=="MainFrame" then | |
| 7073 | c.BackgroundTransparency=i | |
| 7074 | else | |
| 7075 | c.BackgroundTransparency=.5+.5*i | |
| 7076 | end | |
| 7077 | elseif c:IsA("TextLabel") then
| |
| 7078 | c.TextTransparency=i | |
| 7079 | c.TextStrokeTransparency=i | |
| 7080 | end | |
| 7081 | end | |
| 7082 | ||
| 7083 | end | |
| 7084 | namegui=false | |
| 7085 | nameguisetting=false | |
| 7086 | end)) | |
| 7087 | else | |
| 7088 | nameguisetting=true | |
| 7089 | coroutine.resume(coroutine.create(function() | |
| 7090 | for i=1.1,-0.1,-0.03 do | |
| 7091 | swait() | |
| 7092 | for _,c in pairs(ModeNameBill:children()) do | |
| 7093 | if c:IsA("Frame") then
| |
| 7094 | if c.Name=="MainFrame" then | |
| 7095 | c.BackgroundTransparency=i | |
| 7096 | else | |
| 7097 | c.BackgroundTransparency=.5+.5*i | |
| 7098 | end | |
| 7099 | elseif c:IsA("TextLabel") then
| |
| 7100 | c.TextTransparency=i | |
| 7101 | c.TextStrokeTransparency=i | |
| 7102 | end | |
| 7103 | end | |
| 7104 | ||
| 7105 | end | |
| 7106 | namegui=true | |
| 7107 | nameguisetting=false | |
| 7108 | end)) | |
| 7109 | end | |
| 7110 | elseif k=="m" and musicsetting==false and sceeene==false then | |
| 7111 | if musicset=="Global" then | |
| 7112 | musicset="Torso" | |
| 7113 | theme.Parent=Root | |
| 7114 | theme.EmitterSize=22 | |
| 7115 | theme.MaxDistance=666666 | |
| 7116 | print'Music Setted to Torso' | |
| 7117 | elseif musicset=="Torso" then | |
| 7118 | musicset="None" | |
| 7119 | musicsetting=true | |
| 7120 | coroutine.resume(coroutine.create(function() | |
| 7121 | for i=2,-.1,-.04 do | |
| 7122 | swait() | |
| 7123 | theme.Volume=i | |
| 7124 | end | |
| 7125 | theme.Volume=0 | |
| 7126 | theme.PlaybackSpeed=0 | |
| 7127 | theme:Remove() | |
| 7128 | print'Music Setted to None' | |
| 7129 | musicsetting=false | |
| 7130 | end)) | |
| 7131 | elseif musicset=="None" then | |
| 7132 | musicset="Global" | |
| 7133 | musicsetting=true | |
| 7134 | theme.PlaybackSpeed=1 | |
| 7135 | coroutine.resume(coroutine.create(function() | |
| 7136 | for i=0,2,.04 do | |
| 7137 | swait() | |
| 7138 | theme.Volume=i | |
| 7139 | end | |
| 7140 | theme.Volume=2 | |
| 7141 | print'Music Setted to Global' | |
| 7142 | musicsetting=false | |
| 7143 | end)) | |
| 7144 | end | |
| 7145 | end | |
| 7146 | end) | |
| 7147 | ||
| 7148 | mouse.KeyUp:connect(function(k) | |
| 7149 | k=k:lower() | |
| 7150 | if k=="x" and hold==true then | |
| 7151 | hold=false | |
| 7152 | end | |
| 7153 | end) | |
| 7154 | ||
| 7155 | local pluse=false | |
| 7156 | function plu() | |
| 7157 | pluse=true | |
| 7158 | NoteLabel2.Size=UDim2.new(.2,0,1,0) | |
| 7159 | NoteLabel2:TweenSize(UDim2.new(.2, 20, 1, 20), "Out", "Quart", 1,true) | |
| 7160 | for i=0,1,.02 do | |
| 7161 | swait() | |
| 7162 | NoteLabel2.ImageTransparency=i | |
| 7163 | end | |
| 7164 | NoteLabel2.ImageTransparency=1 | |
| 7165 | swait(80) | |
| 7166 | pluse=false | |
| 7167 | end | |
| 7168 | ||
| 7169 | Health2:TweenSize(UDim2.new(hum.Health/hum.MaxHealth, 0, 1, 0), "Out", "Quart", .5,true) | |
| 7170 | hum.HealthChanged:connect(function() | |
| 7171 | swait(20) | |
| 7172 | Health2:TweenSize(UDim2.new(hum.Health/hum.MaxHealth, 0, 1, 0), "Out", "Quart", .5,true) | |
| 7173 | end) | |
| 7174 | ||
| 7175 | hum.Died:connect(function() | |
| 7176 | died=true | |
| 7177 | local ded=0 | |
| 7178 | local rot1=math.random(-100,100)/100 | |
| 7179 | local rot2=math.random(-100,100)/100 | |
| 7180 | local rot3=math.random(-100,100)/100 | |
| 7181 | local rot4=math.random(-100,100)/100 | |
| 7182 | local ra=math.random(-4,4) | |
| 7183 | local ra2=math.random(-4,4) | |
| 7184 | local ra3=math.random(-4,4) | |
| 7185 | local ra4=math.random(-4,4) | |
| 7186 | local ra5=math.random(-4,4) | |
| 7187 | local raise=0 | |
| 7188 | local taunt=false | |
| 7189 | pssounds(Head,"567701832",5,1,1.04,2) | |
| 7190 | for _,c in pairs(chr:children()) do | |
| 7191 | if c:IsA("Accessory") then
| |
| 7192 | local han=c:findFirstChild("Handle")
| |
| 7193 | if han then | |
| 7194 | local val=han:findFirstChild("acc")
| |
| 7195 | if val then | |
| 7196 | if val.Value=="Torso" then | |
| 7197 | local haai=han.CFrame:toObjectSpace(Torso.CFrame):inverse() | |
| 7198 | local loopweld=create("Weld"){
| |
| 7199 | Parent=han, | |
| 7200 | Part0=han, | |
| 7201 | Part1=Torso, | |
| 7202 | C1=haai | |
| 7203 | } | |
| 7204 | coroutine.resume(coroutine.create(function(h) | |
| 7205 | while h.Parent~=nil do | |
| 7206 | swait() | |
| 7207 | loopweld.Parent=h | |
| 7208 | loopweld.Part0=h | |
| 7209 | loopweld.Part1=Torso | |
| 7210 | end | |
| 7211 | end),han) | |
| 7212 | elseif val.Value=="Head" then | |
| 7213 | local haai=han.CFrame:toObjectSpace(Head.CFrame):inverse() | |
| 7214 | local loopweld=create("Weld"){
| |
| 7215 | Parent=han, | |
| 7216 | Part0=han, | |
| 7217 | Part1=Head, | |
| 7218 | C1=haai | |
| 7219 | } | |
| 7220 | coroutine.resume(coroutine.create(function(h) | |
| 7221 | while h.Parent~=nil do | |
| 7222 | swait() | |
| 7223 | loopweld.Parent=h | |
| 7224 | loopweld.Part0=h | |
| 7225 | loopweld.Part1=Head | |
| 7226 | end | |
| 7227 | end),han) | |
| 7228 | end | |
| 7229 | end | |
| 7230 | end | |
| 7231 | end | |
| 7232 | end | |
| 7233 | for _,c in pairs(m:children()) do | |
| 7234 | if c:IsA("BasePart") then
| |
| 7235 | local val1=c:findFirstChild("hnng")
| |
| 7236 | local val2=c:findFirstChild("hnng2")
| |
| 7237 | if val1 and val2 then | |
| 7238 | local hng=val1.Value | |
| 7239 | local haai=c.CFrame:toObjectSpace(hng.CFrame):inverse() | |
| 7240 | local loopweld=create("Weld"){
| |
| 7241 | Parent=c, | |
| 7242 | Part0=val1.Value, | |
| 7243 | Part1=c, | |
| 7244 | C0=CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), | |
| 7245 | C1=val2.Value | |
| 7246 | } | |
| 7247 | coroutine.resume(coroutine.create(function(h) | |
| 7248 | while h.Parent~=nil do | |
| 7249 | swait() | |
| 7250 | loopweld.Parent=h | |
| 7251 | loopweld.Part0=val1.Value | |
| 7252 | loopweld.Part1=h | |
| 7253 | end | |
| 7254 | end),c) | |
| 7255 | ||
| 7256 | end | |
| 7257 | end | |
| 7258 | end | |
| 7259 | for i=1,0,-.005 do | |
| 7260 | swait() | |
| 7261 | RJ.Parent=Root | |
| 7262 | Neck.Parent=Torso | |
| 7263 | RS.Parent=Torso | |
| 7264 | LS.Parent=Torso | |
| 7265 | RH.Parent=Torso | |
| 7266 | LH.Parent=Torso | |
| 7267 | Root.Anchored=true | |
| 7268 | RealMainWeld.Parent=RealMain | |
| 7269 | RealMainWeld.Part0=Torso | |
| 7270 | SubMainWeld.Parent=SubMain | |
| 7271 | SubMainWeld.Part0=Torso | |
| 7272 | MainWeld.Parent=Main | |
| 7273 | MainWeld.Part0=RealMain | |
| 7274 | MainWeld.Part1=Main | |
| 7275 | Main2Weld.Parent=Main2 | |
| 7276 | Main2Weld.Part0=RealMain | |
| 7277 | Main2Weld.Part1=Main2 | |
| 7278 | Main3Weld.Parent=Main3 | |
| 7279 | Main3Weld.Part0=RealMain | |
| 7280 | Main3Weld.Part1=Main3 | |
| 7281 | Center1Weld.Parent=Center1 | |
| 7282 | Center2Weld.Parent=Center2 | |
| 7283 | Center3Weld.Parent=Center3 | |
| 7284 | Center4Weld.Parent=Center4 | |
| 7285 | Center5Weld.Parent=Center5 | |
| 7286 | Center6Weld.Parent=Center6 | |
| 7287 | Center1Weld.Part1=Main | |
| 7288 | Center2Weld.Part1=Main | |
| 7289 | Center3Weld.Part1=Main | |
| 7290 | Center4Weld.Part1=Main | |
| 7291 | Center5Weld.Part1=Main | |
| 7292 | Center6Weld.Part1=Main | |
| 7293 | Center1Weld.Part0=Center1 | |
| 7294 | Center2Weld.Part0=Center2 | |
| 7295 | Center3Weld.Part0=Center3 | |
| 7296 | Center4Weld.Part0=Center4 | |
| 7297 | Center5Weld.Part0=Center5 | |
| 7298 | Center6Weld.Part0=Center6 | |
| 7299 | SubMainWeld.C0=clerp(SubMainWeld.C0,CFrame.Angles(math.rad(doe+0*math.cos(sin/43)),math.rad(doe+56*math.sin(sin/40)),math.rad(doe+62*math.cos(sin/37))),.3) | |
| 7300 | if i>=.6 then | |
| 7301 | RJ.C0=clerp(RJ.C0,CFrame.new(1.19965898e-16, -2.56131959, 0.499924421, 1, -1.05524909e-18, 4.68256456e-17, -4.68375339e-17, 0.0225299895, -0.999746203, 0, 0.999746203, 0.0225299913)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 7302 | Neck.C0=clerp(Neck.C0,CFrame.new(-2.38860594e-08, 1.50002956, 5.81933909e-06, 0.817967534, 1.80544546e-07, 0.575264454, -6.54626638e-06, 1, 8.99843872e-06, -0.575264394, -1.11237168e-05, 0.817967594)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 7303 | RS.C0=clerp(RS.C0,CFrame.new(1.97324204, 0.676238537, -0.00170457177, -0.231739029, -0.972277582, 0.031196842, 0.963591099, -0.233829468, -0.129676789, 0.133376583, 9.82312486e-06, 0.991065562)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 7304 | LS.C0=clerp(LS.C0,CFrame.new(-1.93764377, 0.279502749, 0.0483211055, 0.190784916, 0.981295109, 0.0257122833, -0.972501218, 0.192509755, -0.131077975, -0.133576035, 2.47405842e-06, 0.99103862)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 7305 | RH.C0=clerp(RH.C0,CFrame.new(0.561385691, -1.99206972, 0.00203058124, 0.991080225, -0.12905468, -0.0332409963, 0.129126057, 0.99162817, 1.60187483e-07, 0.0329626873, -0.00429243408, 0.999447405)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 7306 | LH.C0=clerp(LH.C0,CFrame.new(-0.626500785, -1.98494494, 0.012624884, 0.988080263, 0.11870569, 0.0980119258, -0.11812596, 0.992929518, -0.0117173623, -0.0987098441, -5.77419996e-08, 0.995116293)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.2) | |
| 7307 | else | |
| 7308 | raise=raise+.2*(i/4) | |
| 7309 | if not taunt then | |
| 7310 | taunt=true | |
| 7311 | coroutine.resume(coroutine.create(function() | |
| 7312 | swait(28) | |
| 7313 | pssounds(Head,"566988981",5,1.2,1.04,2) | |
| 7314 | end)) | |
| 7315 | end | |
| 7316 | Root.CFrame=clerp(Root.CFrame,Root.CFrame+Vector3.new(0,raise,0),.1) | |
| 7317 | RJ.C0=clerp(RJ.C0,CFrame.new(1.19965898e-16, -2.56131959, 0.499924421, 1, -1.05524909e-18, 4.68256456e-17, -4.68375339e-17, 0.0225299895, -0.999746203, 0, 0.999746203, 0.0225299913)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 7318 | Neck.C0=clerp(Neck.C0,CFrame.new(0.0818377435, 1.45425975, 0.0943319798, 0.762786865, 0.198872864, 0.615309596, 0.032950066, 0.938344598, -0.344127744, -0.645810068, 0.282770604, 0.709203959)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 7319 | RS.C0=clerp(RS.C0,CFrame.new(1.89502347, 0.515932441, 0.279823542, -0.298011065, -0.919448793, -0.256521732, 0.89165616, -0.172190964, -0.418688178, 0.340791613, -0.35350287, 0.871146858)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 7320 | LS.C0=clerp(LS.C0,CFrame.new(-1.88370633, 0.181848556, 0.477893293, 0.143948019, 0.895621717, 0.420880824, -0.96090579, 0.228154764, -0.156861231, -0.236514285, -0.381846994, 0.893450499)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 7321 | RH.C0=clerp(RH.C0,CFrame.new(0.549397707, -1.84193456, 0.421723515, 0.991080344, -0.110563941, -0.0744005218, 0.129125074, 0.934788346, 0.330904126, 0.0329626687, -0.337559551, 0.940726936)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 7322 | LH.C0=clerp(LH.C0,CFrame.new(-0.568955362, -1.82617593, 0.398652166, 0.988080263, 0.0710281804, 0.136573702, -0.11812596, 0.918727517, 0.376810461, -0.0987098441, -0.388451934, 0.916166782)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.04) | |
| 7323 | end | |
| 7324 | ||
| 7325 | if mode=="Celestial" or mode=="Jade" or mode=="Somnambulist" or mode=="Wither" then | |
| 7326 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/41)),math.rad(0-5*math.sin(sin/54)),math.rad(0-6*math.sin(sin/50))),.3) | |
| 7327 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/58)),math.rad(0-93*math.sin(sin/65)),math.rad(0-93*math.sin(sin/73))),.3) | |
| 7328 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/73)),math.rad(0-93*math.cos(sin/65)),math.rad(0-93*math.cos(sin/53))),.3) | |
| 7329 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7330 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-1.6+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7331 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7332 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7333 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-1.6+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7334 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7335 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(55)),.05) | |
| 7336 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(90)),.05) | |
| 7337 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(125)),.05) | |
| 7338 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(125)),.05) | |
| 7339 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(90)),.05) | |
| 7340 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(55)),.05) | |
| 7341 | elseif mode=="Saint" or mode=="Cyclone" then | |
| 7342 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/41)),math.rad(0-5*math.sin(sin/54)),math.rad(0-6*math.sin(sin/50))),.3) | |
| 7343 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/58)),math.rad(0-93*math.sin(sin/65)),math.rad(0-93*math.sin(sin/73))),.3) | |
| 7344 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/73)),math.rad(0-93*math.cos(sin/65)),math.rad(0-93*math.cos(sin/53))),.3) | |
| 7345 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(-1,0,-3+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7346 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(-.5,0,-2+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7347 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7348 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7349 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(.5,0,-2+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7350 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(1,0,-3+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7351 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, .5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(100)),.05) | |
| 7352 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(120)),.05) | |
| 7353 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(-.5, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(160)),.05) | |
| 7354 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(.5, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(160)),.05) | |
| 7355 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(120)),.05) | |
| 7356 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, .5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(100)),.05) | |
| 7357 | elseif mode=="Conflagration" then | |
| 7358 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/38),.4-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/41)),math.rad(0-5*math.sin(sin/54)),math.rad(0-6*math.sin(sin/50))),.3) | |
| 7359 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/38),.4-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/58)),math.rad(0-93*math.sin(sin/65)),math.rad(0-93*math.sin(sin/73))),.3) | |
| 7360 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/38),.4-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/73)),math.rad(0-93*math.cos(sin/65)),math.rad(0-93*math.cos(sin/53))),.3) | |
| 7361 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-1.5+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7362 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-1.3+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7363 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-.8+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7364 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-.8+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7365 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-1.3+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7366 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-1.5+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7367 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(70)),.05) | |
| 7368 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(125)),.05) | |
| 7369 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(180)),.05) | |
| 7370 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(180)),.05) | |
| 7371 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(125)),.05) | |
| 7372 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(70)),.05) | |
| 7373 | elseif mode=="True Catastrophe" then | |
| 7374 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/18),0-.2*math.cos(sin/32),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/21)),math.rad(0-5*math.sin(sin/34)),math.rad(doe*5-62*math.sin(sin/30))),.3) | |
| 7375 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/18),0-.2*math.cos(sin/32),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/38)),math.rad(0-93*math.sin(sin/45)),math.rad(0-93*math.sin(sin/53))),.3) | |
| 7376 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/18),0-.2*math.cos(sin/32),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/53)),math.rad(0-93*math.cos(sin/45)),math.rad(0-93*math.cos(sin/33))),.3) | |
| 7377 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-3-2*math.sin(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7378 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-3+2*math.cos(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7379 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-3-2*math.sin(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7380 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-3+2*math.cos(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7381 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-3-2*math.sin(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7382 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-3+2*math.cos(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7383 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),.05) | |
| 7384 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(60)),.05) | |
| 7385 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(120)),.05) | |
| 7386 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(180)),.05) | |
| 7387 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(240)),.05) | |
| 7388 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(300)),.05) | |
| 7389 | else | |
| 7390 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/41)),math.rad(0-5*math.sin(sin/54)),math.rad(doe-12*math.sin(sin/50))),.3) | |
| 7391 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/58)),math.rad(0-93*math.sin(sin/65)),math.rad(0-93*math.sin(sin/73))),.3) | |
| 7392 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/73)),math.rad(0-93*math.cos(sin/65)),math.rad(0-93*math.cos(sin/53))),.3) | |
| 7393 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7394 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7395 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7396 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7397 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7398 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7399 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),.05) | |
| 7400 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(60)),.05) | |
| 7401 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(120)),.05) | |
| 7402 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(180)),.05) | |
| 7403 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(240)),.05) | |
| 7404 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(300)),.05) | |
| 7405 | end | |
| 7406 | ||
| 7407 | transp=1-1*i | |
| 7408 | theme.PlaybackSpeed=i | |
| 7409 | MusicFrame.Position=MusicFrame.Position+UDim2.new(0,ra,ded,0) | |
| 7410 | HealthFrame.Position=HealthFrame.Position+UDim2.new(0,ra2,ded,0) | |
| 7411 | ModeFrame.Position=ModeFrame.Position+UDim2.new(0,ra3,ded,0) | |
| 7412 | MusicIDFrame.Position=MusicIDFrame.Position+UDim2.new(0,ra4,ded,0) | |
| 7413 | MusicFrame.Rotation=MusicFrame.Rotation+rot1 | |
| 7414 | HealthFrame.Rotation=HealthFrame.Rotation+rot2 | |
| 7415 | ModeFrame.Rotation=ModeFrame.Rotation+rot3 | |
| 7416 | MusicIDFrame.Rotation=MusicIDFrame.Rotation+rot4 | |
| 7417 | ModeNameBill.StudsOffset=ModeNameBill.StudsOffset-Vector3.new(0,ded*3,0) | |
| 7418 | PageFrame.Rotation=PageFrame.Rotation+rot3 | |
| 7419 | PageFrame.Position=PageFrame.Position+UDim2.new(0,ra2,ded,0) | |
| 7420 | asdFrame1.Position=asdFrame1.Position+UDim2.new(0,ra4,ded,0) | |
| 7421 | asdFrame2.Position=asdFrame2.Position+UDim2.new(0,ra5,ded,0) | |
| 7422 | for _,c in pairs(ModeNameBill:children()) do | |
| 7423 | if c:IsA("Frame") then
| |
| 7424 | c.Rotation=c.Rotation+rot1 | |
| 7425 | c.BackgroundTransparency=c.BackgroundTransparency+.01 | |
| 7426 | elseif c:IsA("TextLabel") then
| |
| 7427 | c.Rotation=c.Rotation+rot1 | |
| 7428 | c.TextTransparency=c.TextTransparency+.01 | |
| 7429 | c.TextStrokeTransparency=c.TextStrokeTransparency+.01 | |
| 7430 | end | |
| 7431 | end | |
| 7432 | ded=ded+.0001 | |
| 7433 | end | |
| 7434 | transp=0 | |
| 7435 | truedied=true | |
| 7436 | for _,c in pairs(chr:children()) do | |
| 7437 | if c.Name~="Effect" and c.ClassName~="Humanoid" then | |
| 7438 | c:Remove() | |
| 7439 | end | |
| 7440 | end | |
| 7441 | sounds(chr,"242898468",3,.8) | |
| 7442 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,0,math.rad(90)),9999,300,300,0,-12,-12,.04,"Cylinder",6,0,"") | |
| 7443 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,0,math.rad(90)),9999,250,250,0,-10,-10,.04,"Cylinder",6,0,"") | |
| 7444 | theme.PlaybackSpeed=0 | |
| 7445 | end) | |
| 7446 | ||
| 7447 | ||
| 7448 | ||
| 7449 | local effectde=0 | |
| 7450 | local si=1 | |
| 7451 | while chr.Humanoid.Health>=0 do | |
| 7452 | swait() | |
| 7453 | --numbers | |
| 7454 | sin=sin+cha | |
| 7455 | doe=doe+1 | |
| 7456 | si=si+1 | |
| 7457 | if si>=6 then | |
| 7458 | si=1 | |
| 7459 | end | |
| 7460 | --humanaoid | |
| 7461 | if not attack then | |
| 7462 | hum.WalkSpeed=hlastws | |
| 7463 | hum.JumpPower=hlastjp | |
| 7464 | end | |
| 7465 | --script | |
| 7466 | script.Archivable=false | |
| 7467 | script.Parent=NoteLabel | |
| 7468 | script.Name="" | |
| 7469 | --coloring | |
| 7470 | if mode=="Amativeness" then | |
| 7471 | Blush1.Transparency=0 | |
| 7472 | Blush2.Transparency=0 | |
| 7473 | else | |
| 7474 | Blush1.Transparency=1 | |
| 7475 | Blush2.Transparency=1 | |
| 7476 | end | |
| 7477 | plight.Color=BrickColor.new(modecolor[1]).Color | |
| 7478 | for _,c in pairs(m:children()) do | |
| 7479 | if c:IsA("BasePart") then
| |
| 7480 | if c.Name=="Mode1" then | |
| 7481 | c.Color=BrickColor.new(modecolor[1]).Color | |
| 7482 | c.Material=modeMaterial[1] | |
| 7483 | elseif c.Name=="Mode2" then | |
| 7484 | c.Color=BrickColor.new(modecolor[2]).Color | |
| 7485 | c.Material=modeMaterial[2] | |
| 7486 | elseif c.Name=="nnn" then | |
| 7487 | c.Color=BrickColor.new(nilcolor[math.random(1,#nilcolor)]).Color | |
| 7488 | c.Material=nilmaterial[math.random(1,#nilmaterial)] | |
| 7489 | elseif c.Name=="Main" then | |
| 7490 | c.Color=BrickColor.new(modecolor[1]).Color | |
| 7491 | c.Material=modeMaterial[1] | |
| 7492 | elseif c.Name=="Main2" then | |
| 7493 | c.Color=BrickColor.new(modecolor[2]).Color | |
| 7494 | c.Material=modeMaterial[2] | |
| 7495 | end | |
| 7496 | end | |
| 7497 | end | |
| 7498 | local radcolor2=function(col) | |
| 7499 | return math.rad(col/255*360) | |
| 7500 | end | |
| 7501 | local sine2=math.deg(tick()*1) | |
| 7502 | local r2=math.abs(math.sin(radcolor2(sine2 + 10))) | |
| 7503 | local g2=math.abs(math.sin(radcolor2(sine2 + 85))) | |
| 7504 | local b2=math.abs(math.sin(radcolor2(sine2 + 170))) | |
| 7505 | local ra1d=Color3.new((0+(GetClientProperty(theme,'PlaybackLoudness')/350))*r2,(0+(GetClientProperty(theme,'PlaybackLoudness')/350))*g2,(0+(GetClientProperty(theme,'PlaybackLoudness')/350))*b2) | |
| 7506 | Miss.Color=ra1d | |
| 7507 | --music | |
| 7508 | if mode=="Minstrel" then | |
| 7509 | if died==false then | |
| 7510 | MusicIDFrame:TweenPosition(UDim2.new(.5,0,.8,0), "Out", "Quart", 1,true) | |
| 7511 | end | |
| 7512 | local radcolor=function(col) | |
| 7513 | return math.rad(col/255*360) | |
| 7514 | end | |
| 7515 | local sine=math.deg(tick()*1) | |
| 7516 | local r=math.abs(math.sin(radcolor(sine + 10))) | |
| 7517 | local g=math.abs(math.sin(radcolor(sine + 85))) | |
| 7518 | local b=math.abs(math.sin(radcolor(sine + 170))) | |
| 7519 | local ra1=Color3.new((0+(GetClientProperty(theme,'PlaybackLoudness')/350))*r,(0+(GetClientProperty(theme,'PlaybackLoudness')/350))*g,(0+(GetClientProperty(theme,'PlaybackLoudness')/350))*b) | |
| 7520 | modecolor={ra1,"White"}
| |
| 7521 | MP2.Text=math.floor(GetClientProperty(theme,'PlaybackLoudness')/8) | |
| 7522 | else | |
| 7523 | if died==false then | |
| 7524 | MusicIDFrame:TweenPosition(UDim2.new(.5,0,1.2,0), "Out", "Quart", 1,true) | |
| 7525 | end | |
| 7526 | end | |
| 7527 | timeposit.Value=theme.TimePosition | |
| 7528 | if theme.Parent==nil and truedied==false then | |
| 7529 | theme=create("Sound"){
| |
| 7530 | Parent=chr, | |
| 7531 | SoundId="rbxassetid://"..lastsong, | |
| 7532 | Volume=2, | |
| 7533 | PlaybackSpeed=1, | |
| 7534 | MaxDistance=66666666, | |
| 7535 | EmitterSize=40, | |
| 7536 | Name="Theme", | |
| 7537 | Looped=true} | |
| 7538 | theme:Play() | |
| 7539 | theme.TimePosition=timeposit.Value | |
| 7540 | if musicset=="Global" then | |
| 7541 | theme.Parent=chr | |
| 7542 | elseif musicset=="Torso" then | |
| 7543 | theme.Parent=Root | |
| 7544 | theme.EmitterSize=22 | |
| 7545 | elseif musicset=="None" then | |
| 7546 | theme.Parent=chr | |
| 7547 | theme.Volume=0 | |
| 7548 | theme.PlaybackSpeed=0 | |
| 7549 | end | |
| 7550 | end | |
| 7551 | --billgui | |
| 7552 | ModeText.Text=mode | |
| 7553 | for _,c in pairs(ModeNameBill:children()) do | |
| 7554 | if c:IsA("Frame") then
| |
| 7555 | if c.Name=="Vis1"..si then | |
| 7556 | if c.Name=="Vis13" then | |
| 7557 | c.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7558 | else | |
| 7559 | c.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7560 | end | |
| 7561 | c:TweenSize(UDim2.new(0+(GetClientProperty(theme,'PlaybackLoudness'))/150, 0, .2, 0), "Out", "Quart", .12,true) | |
| 7562 | elseif c.Name=="Vis2"..si then | |
| 7563 | if c.Name=="Vis23" then | |
| 7564 | c.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7565 | else | |
| 7566 | c.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7567 | end | |
| 7568 | c:TweenSize(UDim2.new(0+(GetClientProperty(theme,'PlaybackLoudness'))/150, 0, .2, 0), "Out", "Quart", .12,true) | |
| 7569 | end | |
| 7570 | end | |
| 7571 | end | |
| 7572 | --scrngui | |
| 7573 | coroutine.resume(coroutine.create(function() | |
| 7574 | if lastsong~="" then | |
| 7575 | local mn=game:GetService("MarketplaceService"):GetProductInfo(lastsong, Enum.InfoType.Asset)
| |
| 7576 | MusicText.Text=(mn.Name) | |
| 7577 | else | |
| 7578 | MusicText.Text="None" | |
| 7579 | end | |
| 7580 | end)) | |
| 7581 | NoteLabel:TweenPosition(UDim2.new(-.1, 0, .5+.2*math.cos(sin/50), 0), "Out", "Quart", .2,true) | |
| 7582 | NoteLabel2:TweenPosition(UDim2.new(-.1, 0, .5+.2*math.cos(sin/50), 0), "Out", "Quart", .2,true) | |
| 7583 | if hum.Health<=100000 then | |
| 7584 | HealthText.Text=math.floor(hum.Health) | |
| 7585 | else | |
| 7586 | HealthText.Text="100000+" | |
| 7587 | end | |
| 7588 | Health:TweenSize(UDim2.new(hum.Health/hum.MaxHealth, 0, 1, 0), "Out", "Quart", .5,true) | |
| 7589 | ModeText3.Text=mode | |
| 7590 | if mode=="Nil" then | |
| 7591 | modecolor={nilcolor[math.random(1,#nilcolor)],nilcolor[math.random(1,#nilcolor)]}
| |
| 7592 | modeMaterial={nilmaterial[math.random(1,#nilmaterial)],nilmaterial[math.random(1,#nilmaterial)]}
| |
| 7593 | end | |
| 7594 | -- v im lazy so reeee | |
| 7595 | Pagge.Text="[F] Page:"..page.."/3" | |
| 7596 | MP1.TextColor3=BrickColor.new(modecolor[1]).Color | |
| 7597 | MP2.TextColor3=BrickColor.new(modecolor[1]).Color | |
| 7598 | Frame1.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7599 | Frame2.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7600 | Frame3.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7601 | Frame4.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7602 | Frame5.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7603 | Frame6.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7604 | Frame7.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7605 | Frame8.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7606 | Frame9.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7607 | Frame10.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7608 | Frame11.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7609 | Frame12.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7610 | PageFrame2.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7611 | ModeText.TextColor3=BrickColor.new(modecolor[2]).Color | |
| 7612 | HealthFrame.BorderColor3=BrickColor.new(modecolor[2]).Color | |
| 7613 | HealthText.TextColor3=BrickColor.new(modecolor[1]).Color | |
| 7614 | NoteLabel.ImageColor3=BrickColor.new(modecolor[1]).Color | |
| 7615 | NoteLabel2.ImageColor3=BrickColor.new(modecolor[2]).Color | |
| 7616 | ModeText2.TextColor3=BrickColor.new(modecolor[2]).Color | |
| 7617 | ModeText3.TextColor3=BrickColor.new(modecolor[2]).Color | |
| 7618 | MusicText.TextColor3=BrickColor.new(modecolor[2]).Color | |
| 7619 | MusicIDText.TextColor3=BrickColor.new(modecolor[2]).Color | |
| 7620 | ModeFrame2.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7621 | asdFrame1.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7622 | asdFrame2.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7623 | Trail11.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 7624 | Trail12.Color=CSn(BrickColor.new(modecolor[2]).Color) | |
| 7625 | Trail13.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 7626 | Trail14.Color=CSn(BrickColor.new(modecolor[2]).Color) | |
| 7627 | Trail15.Color=CSn(BrickColor.new(modecolor[1]).Color) | |
| 7628 | Trail16.Color=CSn(BrickColor.new(modecolor[2]).Color) | |
| 7629 | asdFrame1.Rotation=doe-12*math.sin(sin/50) | |
| 7630 | asdFrame2.Rotation=doe-12*math.sin(sin/42) | |
| 7631 | --end | |
| 7632 | coroutine.resume(coroutine.create(function(n) | |
| 7633 | if pluse==false then | |
| 7634 | plu() | |
| 7635 | end | |
| 7636 | end),NoteLabel2) | |
| 7637 | for _,c in pairs(MusicFrame:children()) do | |
| 7638 | if c:IsA("Frame") then
| |
| 7639 | if c.Name=="Viss1"..si then | |
| 7640 | if c.Name=="Viss13" then | |
| 7641 | c.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7642 | else | |
| 7643 | c.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7644 | end | |
| 7645 | c:TweenSize(UDim2.new(0+(GetClientProperty(theme,'PlaybackLoudness'))/(550+40*math.sin(sin/5)), 0, .2, 0), "Out", "Quart", .2,true) | |
| 7646 | end | |
| 7647 | end | |
| 7648 | end | |
| 7649 | for _,c in pairs(HealthFrame:children()) do | |
| 7650 | if c:IsA("Frame") then
| |
| 7651 | if c.Name=="Modd" then | |
| 7652 | c.BackgroundColor3=BrickColor.new(modecolor[2]).Color | |
| 7653 | elseif c.Name=="Modd2" then | |
| 7654 | c.BackgroundColor3=BrickColor.new(modecolor[1]).Color | |
| 7655 | end | |
| 7656 | end | |
| 7657 | end | |
| 7658 | for _,c in pairs(PageFrame:children()) do | |
| 7659 | if c:IsA("TextLabel") then
| |
| 7660 | c.TextColor3=BrickColor.new(modecolor[2]).Color | |
| 7661 | end | |
| 7662 | end | |
| 7663 | --anim | |
| 7664 | if not died then | |
| 7665 | local torvel=(Root.Velocity*Vector3.new(1,0,1)).magnitude | |
| 7666 | local velderp=Root.Velocity.y | |
| 7667 | hitfloor,posfloor=rayCast(Root.Position,(CFrame.new(Root.Position,Root.Position-Vector3.new(0,1,0))).lookVector,5,chr) | |
| 7668 | if mode=="Psychosis" then | |
| 7669 | Neck.C0=clerp(Neck.C0,Neck.C0*CFrame.Angles(math.rad(math.random(-3,3)),math.rad(math.random(-3,3)),math.rad(math.random(-3,3))),.6) | |
| 7670 | end | |
| 7671 | ||
| 7672 | if Root.Velocity.y>.001 and hitfloor==nil then | |
| 7673 | Pose="Jump" | |
| 7674 | idling=0 | |
| 7675 | if attack==false then | |
| 7676 | RJ.C0=clerp(RJ.C0,CFrame.new(1.10802415e-17, -0.00163150078, 0.0403249301, 1, -6.76932638e-15, 5.47649046e-16, -6.79144241e-15, 0.99674356, -0.0806381106, 0, 0.0806381106, 0.99674356)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7677 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.48581612, 0.102150619, 1, 0, 0, 0, 0.990466595, -0.137754023, 0, 0.137754038, 0.990466595)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7678 | RS.C0=clerp(RS.C0,CFrame.new(1.57766068, 0.0123745305, 0.00424289703, 0.986132264, -0.15724887, -0.0530669577, 0.157019928, 0.98755914, -0.00848288834, 0.0537406802, 3.27005982e-05, 0.998555005)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7679 | LS.C0=clerp(LS.C0,CFrame.new(-1.55267167, 0.0287304875, 0.135011286, 0.9756971, 0.186148614, 0.115602329, -0.191808626, 0.980623603, 0.039838504, -0.105946481, -0.0610438362, 0.99249649)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7680 | RH.C0=clerp(RH.C0,CFrame.new(0.562614202, -1.35790551, -0.44574821, 0.996447742, -0.0504051261, -0.0674638301, 0.0555068143, 0.995560646, 0.0760152787, 0.0633327663, -0.0794899538, 0.994821846)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7681 | LH.C0=clerp(LH.C0,CFrame.new(-0.563806355, -2.00389338, 0.215767294, 0.999082208, 0.042828694, 0.000719323347, -0.0424190238, 0.986912727, 0.155577242, 0.00595326023, -0.155464977, 0.987823606)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7682 | end | |
| 7683 | elseif Root.Velocity.y<-0 and hitfloor==nil then | |
| 7684 | Pose="Fall" | |
| 7685 | idling=0 | |
| 7686 | if attack==false then | |
| 7687 | RJ.C0=clerp(RJ.C0,CFrame.new(-7.38648398e-17, 0.0108761657, -0.0592877306, 1, -6.73806239e-15, -8.49825033e-16, -6.79144241e-15, 0.992140114, 0.125131741, 0, -0.125131741, 0.992140114)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7688 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.50735509, -0.0819321126, 1, 0, 0, 0, 0.985154212, 0.171671957, 0, -0.171671957, 0.985154212)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7689 | RS.C0=clerp(RS.C0,CFrame.new(1.70369017, 0.0644764006, 0.0113965124, 0.922882259, -0.38140735, -0.0530750342, 0.381515592, 0.924323559, -0.00847560167, 0.0522911623, -0.0124269724, 0.998554647)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7690 | LS.C0=clerp(LS.C0,CFrame.new(-1.68803787, 0.098537527, 0.14797318, 0.885585904, 0.449859053, 0.115605295, -0.456665397, 0.888745844, 0.0398427621, -0.0848200992, -0.0880771056, 0.992495894)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7691 | RH.C0=clerp(RH.C0,CFrame.new(0.562617958, -1.35790217, -0.445744753, 0.99644798, -0.0504041389, -0.0674602315, 0.0555054247, 0.995560706, 0.0760135278, 0.0633293614, -0.0794879198, 0.994822145)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7692 | LH.C0=clerp(LH.C0,CFrame.new(-0.563812017, -2.00388908, 0.21576789, 0.999082088, 0.0428315215, 0.000720196869, -0.0424219668, 0.986912966, 0.15557386, 0.00595269306, -0.155461594, 0.987823963)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7693 | end | |
| 7694 | elseif torvel<.599 and hitfloor~=nil then | |
| 7695 | Pose="Idle" | |
| 7696 | if attack==false then | |
| 7697 | if idling<1500 then | |
| 7698 | idling=idling+1 | |
| 7699 | if mode=="Saint" or mode=="Jade" or mode=="Somnambulist" or mode=="Wither" or mode=="True Catastrophe" then | |
| 7700 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 1-.2*math.sin(sin/30), -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-2+3*math.cos(sin/60)),Root.RotVelocity.Y/15,0),.3) | |
| 7701 | Neck.C0=clerp(Neck.C0,CFrame.new(-6.96753023e-17, 1.48759532, -0.108950183, 1, -4.65358346e-17, -5.30762053e-18, -4.68375339e-17, 0.993558586, 0.113319807, 0, -0.113319807, 0.993558586)*CFrame.new(0,0,0-.02*math.cos(sin/30))*CFrame.Angles(math.rad(-2-5*math.cos(sin/30)),Head.RotVelocity.Y/25,0),.3) | |
| 7702 | RS.C0=clerp(RS.C0,CFrame.new(1.50886309, 0.0868849978, 0.000735014677, 0.976893008, -0.197074965, -0.0827133283, 0.197757423, 0.980251014, 5.96086975e-05, 0.0810680687, -0.016415406, 0.996573448)*CFrame.new(-0.05+.06*math.cos(sin/60),0+.06*math.cos(sin/30),0)*CFrame.Angles(0,0,math.rad(0+5*math.cos(sin/60))),.3) | |
| 7703 | LS.C0=clerp(LS.C0,CFrame.new(-1.48565662, 0.0577660762, 0.0695920438, 0.953200459, 0.246416941, 0.175179347, -0.242363542, 0.969163895, -0.0445111133, -0.18074581, -2.90695298e-05, 0.983529806)*CFrame.new(0.05-.06*math.cos(sin/60),0+.06*math.cos(sin/30),0)*CFrame.Angles(0,0,math.rad(0-5*math.cos(sin/60))),.3) | |
| 7704 | RH.C0=clerp(RH.C0,CFrame.new(0.471212417, -1.27751982, -0.334044129, 0.994527757, -0.0578084476, -0.0870216787, 0.0738242045, 0.978249609, 0.193849698, 0.0739227757, -0.199213207, 0.97716397)*CFrame.new(.04+.02*math.cos(sin/60),0,0+.04*math.cos(sin/30))*CFrame.Angles(math.rad(0-2*math.cos(sin/30)),0,math.rad(3-2*math.sin(sin/60))),.3) | |
| 7705 | LH.C0=clerp(LH.C0,CFrame.new(-0.495118201, -1.99340534, 0.0645466596, 0.996480763, 0.0367483124, 0.0753372535, -0.0443941243, 0.993745565, 0.102464803, -0.0711006522, -0.10544873, 0.991879642)*CFrame.new(-.04-.02*math.cos(sin/60),0,0+.04*math.cos(sin/30))*CFrame.Angles(math.rad(0-4*math.cos(sin/30)),0,math.rad(-3+2*math.sin(sin/60))),.3) | |
| 7706 | elseif mode=="Amativeness" then | |
| 7707 | RJ.C0=clerp(RJ.C0,CFrame.new(0, -.2-.2*math.sin(sin/50), -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,Root.RotVelocity.Y/15,0),.3) | |
| 7708 | Neck.C0=clerp(Neck.C0,CFrame.new(-6.92052851e-17, 1.47756028, -0.12768589, 1, -4.61291992e-17, -8.11490899e-18, -4.68375339e-17, 0.984876812, 0.173256546, 0, -0.173256546, 0.984876812)*CFrame.new(0,0,0-.02*math.cos(sin/50))*CFrame.Angles(math.rad(-2-5*math.cos(sin/50)),Head.RotVelocity.Y/25,0),.3) | |
| 7709 | RS.C0=clerp(RS.C0,CFrame.new(0.639888227, -0.0117489398, -0.560811102, -0.00435100123, 0.485054821, 0.874472916, 0.5633834, 0.72367841, -0.398608506, -0.826184213, 0.490929186, -0.276420534)*CFrame.new(0+.1*math.cos(sin/50),0,0)*CFrame.Angles(math.rad(0-2*math.sin(sin/50)),0,math.rad(0+5*math.cos(sin/50))),.3) | |
| 7710 | LS.C0=clerp(LS.C0,CFrame.new(-0.643130898, -0.0239873528, -0.573934078, -0.0700180084, -0.605082035, -0.793078303, -0.551915169, 0.685757637, -0.474474758, 0.830955684, 0.404490113, -0.381969333)*CFrame.new(0-.1*math.cos(sin/50),0,0)*CFrame.Angles(math.rad(0-2*math.sin(sin/50)),0,math.rad(0-5*math.cos(sin/50))),.3) | |
| 7711 | RH.C0=clerp(RH.C0,CFrame.new(0.43720153, -1.80102663+.2*math.sin(sin/50), -0.00967041403, 0.988237858, -0.0149661163, -0.152190879, 0.0150305638, 0.999886811, -0.000727051694, 0.152184531, -0.00156901462, 0.988350868)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7712 | LH.C0=clerp(LH.C0,CFrame.new(-0.532050431, -1.7995898+.2*math.sin(sin/50), 0.00220155716, 0.997532487, 0.0149647305, 0.0685942918, -0.0150000649, 0.999887526, 5.93299774e-08, -0.0685865805, -0.00102897803, 0.997644663)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),.3) | |
| 7713 | else | |
| 7714 | RJ.C0=clerp(RJ.C0,CFrame.new(0.000630337745, -.1-.1*math.sin(sin/50), -0.0514505655, 0.914833248, 4.72251821e-22, -0.403832078, -1.57436164e-22, 1, 8.12773715e-22, 0.403832078, -6.79974523e-22, 0.914833248)*CFrame.new(0,0,0-.04*math.sin(sin/50))*CFrame.Angles(math.rad(-1-1*math.sin(sin/50)),Root.RotVelocity.Y/15,0),.3) | |
| 7715 | Neck.C0=clerp(Neck.C0,CFrame.new(-1.1458993e-05, 1.49527085, -0.0492070317, 0.840908468, -5.66244125e-07, 0.54117769, -0.0517589934, 0.995415747, 0.0804267079, -0.538696885, -0.0956422985, 0.837053418)*CFrame.new(0,0,0-.02*math.cos(sin/50))*CFrame.Angles(math.rad(-2-5*math.cos(sin/50)),Head.RotVelocity.Y/25,0),.3) | |
| 7716 | RS.C0=clerp(RS.C0,CFrame.new(1.66391528, 0.106815755, 6.21249092e-06, 0.962299645, -0.271992087, -2.83122063e-06, 0.271992087, 0.962299526, -1.16713409e-06, 3.01003456e-06, 3.57627869e-07, 1.00000012)*CFrame.new(-0.1+.04*math.cos(sin/50),0,0)*CFrame.Angles(0,0,math.rad(0+5*math.cos(sin/50))),.3) | |
| 7717 | LS.C0=clerp(LS.C0,CFrame.new(-1.62677014, 0.0988141894, 3.39579219e-06, 0.974002719, 0.226537064, -1.7285347e-06, -0.226537034, 0.9740026, 4.72024112e-07, 1.75833702e-06, -8.19563866e-08, 1.00000012)*CFrame.new(0.1-.04*math.cos(sin/50),0,0)*CFrame.Angles(0,0,math.rad(0-5*math.cos(sin/50))),.3) | |
| 7718 | RH.C0=clerp(RH.C0,CFrame.new(0.573823512, -1.89539232+.1*math.sin(sin/50), 0.0048128441, 0.995956421, -0.0623230599, -0.0647053421, 0.062191993, 0.998056114, -0.00403955206, 0.0648313463, -9.3691051e-07, 0.997896373)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-1+1*math.sin(sin/50)),0,0),.3) | |
| 7719 | LH.C0=clerp(LH.C0,CFrame.new(-0.549286842, -1.89832022+.1*math.sin(sin/50), 0.00406210497, 0.996040761, 0.0338748135, 0.0821928084, -0.0339899957, 0.999422252, 2.17083584e-06, -0.0821451843, -0.00279589556, 0.996616662)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-1+1*math.sin(sin/50)),0,0),.3) | |
| 7720 | end | |
| 7721 | else | |
| 7722 | RJ.C0=clerp(RJ.C0,CFrame.new(3.37442298e-15, -0.496863961-.1*math.sin(sin/45), 0.500006914, 1, -4.30781204e-17, 6.79130604e-15, -6.79144241e-15, 0.0063430001, -0.999979913, 0, 0.999979913, 0.0063430001)*CFrame.new(0-.04*math.cos(sin/65),0,0-.04*math.cos(sin/55))*CFrame.Angles(math.rad(-3-4*math.cos(sin/45)),math.rad(0-3*math.cos(sin/65))+Root.RotVelocity.Y/15,0),.3) | |
| 7723 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.59462416, -0.259601027, 1, 0, 0, 0, 0.893546343, 0.448971033, 0, -0.448971033, 0.893546343)*CFrame.new(0,0,0+.04*math.cos(sin/45))*CFrame.Angles(math.rad(3+2*math.cos(sin/45)),Head.RotVelocity.Y/35,0),.3) | |
| 7724 | RS.C0=clerp(RS.C0,CFrame.new(0.738945782, 1.64390218, 0.154127955, -0.93241936, 0.352425426, -0.0799408332, -0.338556975, -0.929260314, -0.147832781, -0.126385882, -0.110777617, 0.985776305)*CFrame.new(0,0,0-.04*math.cos(sin/45))*CFrame.Angles(math.rad(0+2*math.cos(sin/45)),0,0),.3) | |
| 7725 | LS.C0=clerp(LS.C0,CFrame.new(-0.528893411, 1.71436501, 0.131731346, -0.8665452, -0.493845284, 0.072223492, 0.480511844, -0.864616513, -0.146788061, 0.134936199, -0.0924942344, 0.98652786)*CFrame.new(0,0,0-.04*math.cos(sin/45))*CFrame.Angles(math.rad(0+2*math.cos(sin/45)),0,0),.3) | |
| 7726 | RH.C0=clerp(RH.C0,CFrame.new(0.551591456, -1.85907018, 0.416908115, 0.993425012, -0.0885560811, -0.0725575536, 0.106571078, 0.946855903, 0.30349052, 0.0418256186, -0.309227616, 0.950067878)*CFrame.new(0,0,-.1+.1*math.cos(sin/45))*CFrame.Angles(math.rad(0-6*math.cos(sin/45)),0,0),.3) | |
| 7727 | LH.C0=clerp(LH.C0,CFrame.new(-0.594523072, -1.80308008, 0.599186897, 0.995679498, 0.0928568393, -1.42638987e-06, -0.0799041837, 0.856799364, 0.509421408, 0.047304485, -0.507220268, 0.860517263)*CFrame.new(0,0,-.2+.1*math.cos(sin/45))*CFrame.Angles(math.rad(0-6*math.cos(sin/45)),0,0),.3) | |
| 7728 | end | |
| 7729 | end | |
| 7730 | elseif torvel>.6 and torvel<24.5 and hitfloor~=nil then | |
| 7731 | Pose="Walk" | |
| 7732 | idling=0 | |
| 7733 | if attack==false then | |
| 7734 | if mode=="Saint" or mode=="Jade" or mode=="Somnambulist" or mode=="Wither" or mode=="True Catastrophe" then | |
| 7735 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 1-.2*math.sin(sin/30), -0.415240347, 1, 0, 0, 0, 0.661848187, 0.749637961, 0, -0.749637961, 0.661848187)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-2+3*math.cos(sin/60)),Root.RotVelocity.Y/15,0),.3) | |
| 7736 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.42224586, 0.125616729, 1, 0, 0, 0, 0.751931906, -0.659240842, 0, 0.659240842, 0.751931906)*CFrame.new(0,0,0-.02*math.cos(sin/30))*CFrame.Angles(math.rad(-2-5*math.cos(sin/30)),Head.RotVelocity.Y/25,0),.3) | |
| 7737 | RS.C0=clerp(RS.C0,CFrame.new(1.91606772, 0.094961905, 0.724651277, 0.715574741, -0.645622611, -0.266691297, 0.645906031, 0.466155559, 0.604569554, -0.266004145, -0.604872167, 0.750580728)*CFrame.new(-0.3+.06*math.cos(sin/60),0+.06*math.cos(sin/30),0)*CFrame.Angles(0,0,math.rad(-20+5*math.cos(sin/60))),.3) | |
| 7738 | LS.C0=clerp(LS.C0,CFrame.new(-1.87215602, 0.08541919, 0.800057828, 0.704578042, 0.616255641, 0.351850599, -0.701451361, 0.529776692, 0.476762772, 0.107405454, -0.582722545, 0.805542409)*CFrame.new(0.3-.06*math.cos(sin/60),0+.06*math.cos(sin/30),0)*CFrame.Angles(0,0,math.rad(20-5*math.cos(sin/60))),.3) | |
| 7739 | RH.C0=clerp(RH.C0,CFrame.new(0.471212417, -1.27751982, -0.334044129, 0.994527757, -0.0578084476, -0.0870216787, 0.0738242045, 0.978249609, 0.193849698, 0.0739227757, -0.199213207, 0.97716397)*CFrame.new(.04+.02*math.cos(sin/60),0,0+.04*math.cos(sin/30))*CFrame.Angles(math.rad(0-2*math.cos(sin/30)),0,math.rad(3-2*math.sin(sin/60))),.3) | |
| 7740 | LH.C0=clerp(LH.C0,CFrame.new(-0.495118201, -1.99340534, 0.0645466596, 0.996480763, 0.0367483124, 0.0753372535, -0.0443941243, 0.993745565, 0.102464803, -0.0711006522, -0.10544873, 0.991879642)*CFrame.new(-.04-.02*math.cos(sin/60),0,0+.04*math.cos(sin/30))*CFrame.Angles(math.rad(0-4*math.cos(sin/30)),0,math.rad(-3+2*math.sin(sin/60))),.3) | |
| 7741 | elseif mode=="Amativeness" then | |
| 7742 | RJ.C0=clerp(RJ.C0,CFrame.new(0, -.1-.1*math.sin(sin/5), -0, 1, -9.36750677e-17, 0, -9.36750677e-17, 1, 0, 0, 0, 1)*CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(0-6*math.sin(sin/10))+Root.RotVelocity.Y/15,0),.3) | |
| 7743 | Neck.C0=clerp(Neck.C0,CFrame.new(-6.92052851e-17, 1.47756028, -0.12768589, 1, -4.61291992e-17, -8.11490899e-18, -4.68375339e-17, 0.984876812, 0.173256546, 0, -0.173256546, 0.984876812)*CFrame.new(0,0,0)*CFrame.Angles(0,Head.RotVelocity.Y/25,0),.3) | |
| 7744 | RS.C0=clerp(RS.C0,CFrame.new(0.626639724, -0.0785008967-.03*math.cos(sin/5), -0.506459296, -0.081644997, 0.478145957, 0.874477327, 0.440772176, 0.804261804, -0.398601174, -0.893898249, 0.352901459, -0.276417375)*CFrame.new(0+.04*math.cos(sin/5),0,0)*CFrame.Angles(math.rad(0-2*math.sin(sin/10)),0,math.rad(0+2*math.cos(sin/50))),.3) | |
| 7745 | LS.C0=clerp(LS.C0,CFrame.new(-0.658066571, -0.0610473454-.03*math.cos(sin/5), -0.496888459, -0.172087952, -0.584305763, -0.793077886, -0.427006274, 0.769765437, -0.474475265, 0.887722552, 0.256997734, -0.381969631)*CFrame.new(0-.04*math.cos(sin/5),0,0)*CFrame.Angles(math.rad(0-2*math.sin(sin/10)),0,math.rad(0-2*math.cos(sin/5))),.3) | |
| 7746 | RH.C0=clerp(RH.C0,CFrame.new(0.497421563, -2.000072+.1*math.sin(sin/5), -1.6358681e-05, 0.99960798, -0.027273545, -0.00633664196, 0.0272729993, 0.999628007, -0.000172889879, 0.00633900007, 2.88098301e-09, 0.999979973)*CFrame.new(0,.05-.1*math.sin(sin/5),0-.4*math.cos(sin/10))*CFrame.Angles(math.rad(0+35*math.cos(sin/10)),math.rad(0+6*math.sin(sin/10)),0),.3) | |
| 7747 | LH.C0=clerp(LH.C0,CFrame.new(-0.588625193, -1.99550474+.1*math.sin(sin/5), -0.00098110456, 0.997929871, 0.0606773198, -0.0213117059, -0.060672991, 0.998157442, 0.000849818927, 0.0213239975, 0.00044498514, 0.999772549)*CFrame.new(0,.05-.1*math.sin(sin/5),0+.4*math.cos(sin/10))*CFrame.Angles(math.rad(0-35*math.cos(sin/10)),math.rad(0+6*math.sin(sin/10)),0),.3) | |
| 7748 | else | |
| 7749 | RJ.C0=clerp(RJ.C0,CFrame.new(-0, 0-.1*math.sin(sin/5), 0, 1, 0, 0, 0, 1, -2.12296717e-42, 0, -2.12296717e-42, 1)*CFrame.new(0,0,0)*CFrame.Angles(-math.rad(2),math.rad(0-6*math.sin(sin/10))+Root.RotVelocity.Y/15,0),.3) | |
| 7750 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.49999976, -3.18375011e-42, 1, 0, 0, 0, 1, -2.12296717e-42, 0, -2.12296717e-42, 1)*CFrame.new(0,0,0-.01*math.cos(sin/5))*CFrame.Angles(math.rad(-5-2*math.cos(sin/5)),Head.RotVelocity.Y/25,0),.3) | |
| 7751 | RS.C0=clerp(RS.C0,CFrame.new(1.54799044, 0.00431090593, 9.983778e-07, 0.995991886, -0.0894439891, -4.49431016e-21, 0.0894439891, 0.995991886, 6.79974523e-22, 4.41547678e-21, -1.07923816e-21, 1)*CFrame.new(0,0,0+.4*math.cos(sin/10))*CFrame.Angles(math.rad(0-45*math.cos(sin/10)),math.rad(0+6*math.sin(sin/10)),0),.3) | |
| 7752 | LS.C0=clerp(LS.C0,CFrame.new(-1.54277451, 0.00714929402, -7.16328394e-21, 0.997043908, 0.0768340006, -4.49431016e-21, -0.0768339932, 0.997043908, 6.79974523e-22, 4.53326964e-21, -3.32648659e-22, 1)*CFrame.new(0,0,0-.4*math.cos(sin/10))*CFrame.Angles(math.rad(0+45*math.cos(sin/10)),math.rad(0+6*math.sin(sin/10)),0),.3) | |
| 7753 | RH.C0=clerp(RH.C0,CFrame.new(0.497421563, -2.000072+.1*math.sin(sin/5), -1.6358681e-05, 0.99960798, -0.027273545, -0.00633664196, 0.0272729993, 0.999628007, -0.000172889879, 0.00633900007, 2.88098301e-09, 0.999979973)*CFrame.new(0,.05-.1*math.sin(sin/5),0-.4*math.cos(sin/10))*CFrame.Angles(math.rad(0+35*math.cos(sin/10)),math.rad(0+6*math.sin(sin/10)),0),.3) | |
| 7754 | LH.C0=clerp(LH.C0,CFrame.new(-0.588625193, -1.99550474+.1*math.sin(sin/5), -0.00098110456, 0.997929871, 0.0606773198, -0.0213117059, -0.060672991, 0.998157442, 0.000849818927, 0.0213239975, 0.00044498514, 0.999772549)*CFrame.new(0,.05-.1*math.sin(sin/5),0+.4*math.cos(sin/10))*CFrame.Angles(math.rad(0-35*math.cos(sin/10)),math.rad(0+6*math.sin(sin/10)),0),.3) | |
| 7755 | end | |
| 7756 | end | |
| 7757 | elseif torvel>24.501 and hitfloor~=nil then | |
| 7758 | Pose="Run" | |
| 7759 | idling=0 | |
| 7760 | if attack==false then | |
| 7761 | if mode=="Saint" or mode=="Jade" or mode=="Somnambulist" or mode=="Wither" or mode=="True Catastrophe" then | |
| 7762 | RJ.C0=clerp(RJ.C0,CFrame.new(0, 1-.2*math.sin(sin/30), -0.358621627, 1, 0, 0, 0, 0.408553392, 0.912734509, 0, -0.912734509, 0.408553421)*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-2+3*math.cos(sin/60)),Root.RotVelocity.Y/15,0),.3) | |
| 7763 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.45296049, 0.204289973, 1, 0, 0, 0, 0.546001792, -0.837783992, 0, 0.837783992, 0.546001792)*CFrame.new(0,0,0)*CFrame.new(0,0,0-.02*math.cos(sin/30))*CFrame.Angles(math.rad(-2-5*math.cos(sin/30)),Head.RotVelocity.Y/20,0),.3) | |
| 7764 | RS.C0=clerp(RS.C0,CFrame.new(1.79892254, -0.0473419279, 0.381310105, 0.848245561, -0.528755426, -0.0299531464, 0.493116707, 0.767912984, 0.408834517, -0.193172067, -0.361562461, 0.912117004)*CFrame.new(-0.1+.06*math.cos(sin/60),0+.06*math.cos(sin/30),0)*CFrame.Angles(0,0,math.rad(0+5*math.cos(sin/60))),.3) | |
| 7765 | LS.C0=clerp(LS.C0,CFrame.new(-1.86058223, 0.189608008, 0.305094153, 0.870703101, 0.472113281, 0.137786716, -0.491381824, 0.823433101, 0.283728361, 0.0204937831, -0.314749062, 0.948953748)*CFrame.new(0.1-.06*math.cos(sin/60),0+.06*math.cos(sin/30),0)*CFrame.Angles(0,0,math.rad(0-5*math.cos(sin/60))),.3) | |
| 7766 | RH.C0=clerp(RH.C0,CFrame.new(0.471212417, -1.27751982, -0.334044129, 0.994527757, -0.0578084476, -0.0870216787, 0.0738242045, 0.978249609, 0.193849698, 0.0739227757, -0.199213207, 0.97716397)*CFrame.new(.04+.02*math.cos(sin/60),0,0+.04*math.cos(sin/30))*CFrame.Angles(math.rad(0-2*math.cos(sin/30)),0,math.rad(3-2*math.sin(sin/60))),.3) | |
| 7767 | LH.C0=clerp(LH.C0,CFrame.new(-0.495118201, -1.99340534, 0.0645466596, 0.996480763, 0.0367483124, 0.0753372535, -0.0443941243, 0.993745565, 0.102464803, -0.0711006522, -0.10544873, 0.991879642)*CFrame.new(-.04-.02*math.cos(sin/60),0,0+.04*math.cos(sin/30))*CFrame.Angles(math.rad(0-4*math.cos(sin/30)),0,math.rad(-3+2*math.sin(sin/60))),.3) | |
| 7768 | else | |
| 7769 | RJ.C0=clerp(RJ.C0,CFrame.new(-0, -.1-.1*math.sin(sin/3), 0, 1, 0, 0, 0, 1, -2.12296717e-42, 0, -2.12296717e-42, 1)*CFrame.new(0,0,0)*CFrame.Angles(-math.rad(30),math.rad(0-6*math.sin(sin/6))+Root.RotVelocity.Y/15,0),.3) | |
| 7770 | Neck.C0=clerp(Neck.C0,CFrame.new(0, 1.49999976, -3.18375011e-42, 1, 0, 0, 0, 1, -2.12296717e-42, 0, -2.12296717e-42, 1)*CFrame.new(0,0,0-.01*math.cos(sin/3))*CFrame.Angles(math.rad(-5-2*math.cos(sin/3)),Head.RotVelocity.Y/20,0),.3) | |
| 7771 | RS.C0=clerp(RS.C0,CFrame.new(1.54799044, 0.00431090593, 9.983778e-07, 0.995991886, -0.0894439891, -4.49431016e-21, 0.0894439891, 0.995991886, 6.79974523e-22, 4.41547678e-21, -1.07923816e-21, 1)*CFrame.new(0,.3+.09*math.cos(sin/3),0+1*math.cos(sin/6))*CFrame.Angles(math.rad(0-115*math.cos(sin/6)),math.rad(0+6*math.sin(sin/6)),0),.3) | |
| 7772 | LS.C0=clerp(LS.C0,CFrame.new(-1.54277451, 0.00714929402, -7.16328394e-21, 0.997043908, 0.0768340006, -4.49431016e-21, -0.0768339932, 0.997043908, 6.79974523e-22, 4.53326964e-21, -3.32648659e-22, 1)*CFrame.new(0,.3+.09*math.cos(sin/3),0-1*math.cos(sin/6))*CFrame.Angles(math.rad(0+115*math.cos(sin/6)),math.rad(0+6*math.sin(sin/6)),0),.3) | |
| 7773 | RH.C0=clerp(RH.C0,CFrame.new(0.497421563, -2.000072+.1*math.sin(sin/3), -1.6358681e-05, 0.99960798, -0.027273545, -0.00633664196, 0.0272729993, 0.999628007, -0.000172889879, 0.00633900007, 2.88098301e-09, 0.999979973)*CFrame.new(0,.3+.1*math.cos(sin/3),0-1*math.cos(sin/6))*CFrame.Angles(math.rad(0+85*math.cos(sin/6)),math.rad(0+6*math.sin(sin/6)),0),.3) | |
| 7774 | LH.C0=clerp(LH.C0,CFrame.new(-0.588625193, -1.99550474+.1*math.sin(sin/3), -0.00098110456, 0.997929871, 0.0606773198, -0.0213117059, -0.060672991, 0.998157442, 0.000849818927, 0.0213239975, 0.00044498514, 0.999772549)*CFrame.new(0,.3+.1*math.cos(sin/3),0+1*math.cos(sin/6))*CFrame.Angles(math.rad(0-85*math.cos(sin/6)),math.rad(0+6*math.sin(sin/6)),0),.3) | |
| 7775 | end | |
| 7776 | end | |
| 7777 | end | |
| 7778 | RealMainWeld.C0=clerp(RealMainWeld.C0,CFrame.new(0,.5,1.4),.3) | |
| 7779 | if mode=="Nil" then | |
| 7780 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/math.random(2,70)),0-.2*math.cos(sin/math.random(2,70)),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/math.random(2,70))),math.rad(0-5*math.sin(sin/math.random(2,70))),math.rad(doe-math.random(2,70)*math.sin(sin/math.random(2,70)))),.8) | |
| 7781 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/math.random(2,70)),0-.2*math.cos(sin/math.random(2,70)),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/math.random(2,70))),math.rad(0-93*math.sin(sin/math.random(2,70))),math.rad(0-93*math.sin(sin/math.random(2,70)))),.8) | |
| 7782 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/math.random(2,70)),0-.2*math.cos(sin/math.random(2,70)),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/math.random(2,70))),math.rad(0-93*math.cos(sin/math.random(2,70))),math.rad(0-93*math.cos(sin/math.random(2,70)))),.8) | |
| 7783 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/math.random(2,70)))*CFrame.Angles(math.rad(90),0,0),.3) | |
| 7784 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/math.random(2,70)))*CFrame.Angles(math.rad(90),0,0),.3) | |
| 7785 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/math.random(2,70)))*CFrame.Angles(math.rad(90),0,0),.3) | |
| 7786 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/math.random(2,70)))*CFrame.Angles(math.rad(90),0,0),.3) | |
| 7787 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/math.random(2,70)))*CFrame.Angles(math.rad(90),0,0),.3) | |
| 7788 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/math.random(2,70)))*CFrame.Angles(math.rad(90),0,0),.3) | |
| 7789 | else | |
| 7790 | if mode=="Celestial" or mode=="Jade" or mode=="Somnambulist" or mode=="Wither" then | |
| 7791 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/41)),math.rad(0-5*math.sin(sin/54)),math.rad(0-6*math.sin(sin/50))),.3) | |
| 7792 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/58)),math.rad(0-93*math.sin(sin/65)),math.rad(0-93*math.sin(sin/73))),.3) | |
| 7793 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/73)),math.rad(0-93*math.cos(sin/65)),math.rad(0-93*math.cos(sin/53))),.3) | |
| 7794 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7795 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-1.6+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7796 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7797 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7798 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-1.6+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7799 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7800 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(55)),.05) | |
| 7801 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(90)),.05) | |
| 7802 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(125)),.05) | |
| 7803 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(125)),.05) | |
| 7804 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(90)),.05) | |
| 7805 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(55)),.05) | |
| 7806 | elseif mode=="Saint" or mode=="Cyclone" then | |
| 7807 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/41)),math.rad(0-5*math.sin(sin/54)),math.rad(0-6*math.sin(sin/50))),.3) | |
| 7808 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/58)),math.rad(0-93*math.sin(sin/65)),math.rad(0-93*math.sin(sin/73))),.3) | |
| 7809 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/73)),math.rad(0-93*math.cos(sin/65)),math.rad(0-93*math.cos(sin/53))),.3) | |
| 7810 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(-1,0,-3+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7811 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(-.5,0,-2+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7812 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7813 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7814 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(.5,0,-2+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7815 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(1,0,-3+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7816 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, .5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(100)),.05) | |
| 7817 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(120)),.05) | |
| 7818 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(-.5, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(160)),.05) | |
| 7819 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(.5, 2, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(160)),.05) | |
| 7820 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(120)),.05) | |
| 7821 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, .5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(100)),.05) | |
| 7822 | elseif mode=="Conflagration" then | |
| 7823 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/38),.4-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/41)),math.rad(0-5*math.sin(sin/54)),math.rad(0-6*math.sin(sin/50))),.3) | |
| 7824 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/38),.4-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/58)),math.rad(0-93*math.sin(sin/65)),math.rad(0-93*math.sin(sin/73))),.3) | |
| 7825 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/38),.4-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/73)),math.rad(0-93*math.cos(sin/65)),math.rad(0-93*math.cos(sin/53))),.3) | |
| 7826 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7827 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-1.3+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7828 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-.8+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7829 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-.8+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7830 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-1.3+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7831 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-1.6+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7832 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(70)),.05) | |
| 7833 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(125)),.05) | |
| 7834 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(180)),.05) | |
| 7835 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(180)),.05) | |
| 7836 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(125)),.05) | |
| 7837 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,-math.rad(70)),.05) | |
| 7838 | elseif mode=="True Catastrophe" or mode=="Exhaustion" then | |
| 7839 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/18),0-.2*math.cos(sin/32),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/21)),math.rad(0-5*math.sin(sin/34)),math.rad(doe*5-62*math.sin(sin/30))),.3) | |
| 7840 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/18),0-.2*math.cos(sin/32),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/38)),math.rad(0-93*math.sin(sin/45)),math.rad(0-93*math.sin(sin/53))),.3) | |
| 7841 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/18),0-.2*math.cos(sin/32),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/53)),math.rad(0-93*math.cos(sin/45)),math.rad(0-93*math.cos(sin/33))),.3) | |
| 7842 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-3-2*math.sin(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7843 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-3+2*math.cos(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7844 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-3-2*math.sin(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7845 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-3+2*math.cos(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7846 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-3-2*math.sin(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7847 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-3+2*math.cos(sin/16))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7848 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),.05) | |
| 7849 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(60)),.05) | |
| 7850 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(120)),.05) | |
| 7851 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(180)),.05) | |
| 7852 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(240)),.05) | |
| 7853 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(300)),.05) | |
| 7854 | else | |
| 7855 | MainWeld.C0=clerp(MainWeld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-5*math.cos(sin/41)),math.rad(0-5*math.sin(sin/54)),math.rad(doe-12*math.sin(sin/50))),.3) | |
| 7856 | Main2Weld.C0=clerp(Main2Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.sin(sin/58)),math.rad(0-93*math.sin(sin/65)),math.rad(0-93*math.sin(sin/73))),.3) | |
| 7857 | Main3Weld.C0=clerp(Main3Weld.C0,CFrame.new(0-.2*math.sin(sin/38),0-.2*math.cos(sin/52),0)*CFrame.Angles(math.rad(0-93*math.cos(sin/73)),math.rad(0-93*math.cos(sin/65)),math.rad(0-93*math.cos(sin/53))),.3) | |
| 7858 | Center1Weld.C0=clerp(Center1Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7859 | Center2Weld.C0=clerp(Center2Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7860 | Center3Weld.C0=clerp(Center3Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7861 | Center4Weld.C0=clerp(Center4Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7862 | Center5Weld.C0=clerp(Center5Weld.C0,CFrame.new(0,0,-1+.5*math.sin(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7863 | Center6Weld.C0=clerp(Center6Weld.C0,CFrame.new(0,0,-1+.5*math.cos(sin/36))*CFrame.Angles(math.rad(90),0,0),.05) | |
| 7864 | Center1Weld.C1=clerp(Center1Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),.05) | |
| 7865 | Center2Weld.C1=clerp(Center2Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(60)),.05) | |
| 7866 | Center3Weld.C1=clerp(Center3Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(120)),.05) | |
| 7867 | Center4Weld.C1=clerp(Center4Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(180)),.05) | |
| 7868 | Center5Weld.C1=clerp(Center5Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(240)),.05) | |
| 7869 | Center6Weld.C1=clerp(Center6Weld.C1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)*CFrame.Angles(0,0,math.rad(300)),.05) | |
| 7870 | end | |
| 7871 | end | |
| 7872 | end | |
| 7873 | --mode effects | |
| 7874 | if not truedied and not cooldisable then | |
| 7875 | if mode=="Rust" then | |
| 7876 | effectde=effectde+1 | |
| 7877 | if effectde>=3 then | |
| 7878 | effectde=0 | |
| 7879 | rusting(Root.CFrame*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,0,math.random(-20,20))) | |
| 7880 | end | |
| 7881 | elseif mode=="Nova" then | |
| 7882 | effectde=effectde+1 | |
| 7883 | if effectde>=2 then | |
| 7884 | effectde=0 | |
| 7885 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(math.rad(doe*2),math.rad(doe*9),0)*CFrame.new(0,0,5),8,8,8,-.4,-.4,-.4,.07,"Sphere",3,1.1,"") | |
| 7886 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(math.rad(doe*2),math.rad(180+doe*9),0)*CFrame.new(0,0,5),8,8,8,-.4,-.4,-.4,.07,"Sphere",3,1.1,"") | |
| 7887 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(math.rad(doe*2),math.rad(doe*9),0)*CFrame.new(0,0,5),8,8,8,-.4,-.4,-.4,.07,"Brick",1,0,"") | |
| 7888 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(math.rad(doe*2),math.rad(180+doe*9),0)*CFrame.new(0,0,5),8,8,8,-.4,-.4,-.4,.07,"Brick",1,0,"") | |
| 7889 | end | |
| 7890 | elseif mode=="Celestial" then --eat | |
| 7891 | effectde=effectde+1 | |
| 7892 | if effectde>=1 then | |
| 7893 | effectde=0 | |
| 7894 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*18.4),0)*CFrame.new(0,-3,8+3*math.sin(sin/35))*CFrame.Angles(-math.rad(60+math.random(-40,40)),0,0),5,5,5,-.6,-.6,-.6,.1,"Sphere",3,math.random(8,13)/10,"") | |
| 7895 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+(doe*18.4)),0)*CFrame.new(0,-3,8+3*math.sin(sin/35))*CFrame.Angles(-math.rad(60+math.random(-40,40)),0,0),5,5,5,-.6,-.6,-.6,.1,"Sphere",3,math.random(8,13)/10,"") | |
| 7896 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(-doe*18.4),0)*CFrame.new(0,-3,8+3*math.sin(sin/35))*CFrame.Angles(-math.rad(60+math.random(-40,40)),0,0),5,5,5,-.6,-.6,-.6,.1,"Sphere",3,math.random(8,13)/10,"") | |
| 7897 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(-180-(doe*18.4)),0)*CFrame.new(0,-3,8+3*math.sin(sin/35))*CFrame.Angles(-math.rad(60+math.random(-40,40)),0,0),5,5,5,-.6,-.6,-.6,.1,"Sphere",3,math.random(8,13)/10,"") | |
| 7898 | end | |
| 7899 | elseif mode=="Glacier" then | |
| 7900 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(math.rad(90),0,0)*CFrame.new(math.random(-10,10),math.random(-10,10),math.random(-10,10)),3,3,3,0,0,0,.03,"Sphere",3,math.random(2,12)/100,"") | |
| 7901 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(math.rad(90),0,0)*CFrame.new(math.random(-10,10),math.random(-10,10),math.random(-10,10)),3,3,3,0,0,0,.03,"Sphere",3,math.random(2,12)/100,"") | |
| 7902 | elseif mode=="Desperation" then | |
| 7903 | effectde=effectde+1 | |
| 7904 | if effectde>=2 then | |
| 7905 | effectde=0 | |
| 7906 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,math.random(8,19),math.random(-30,30))*CFrame.Angles(math.rad(math.random(-30,-1)),math.random(-120,120),0),3,3,20,0,0,0,.05,"Sphere",4,math.random(-2,2),"",-200,-100,150) | |
| 7907 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,math.random(8,19),math.random(-30,30))*CFrame.Angles(math.rad(math.random(-30,-1)),math.random(-120,120),0),3,3,20,0,0,0,.05,"Sphere",4,math.random(-2,2),"",-200,-100,150) | |
| 7908 | end | |
| 7909 | elseif mode=="Saint" then | |
| 7910 | effectde=effectde+1 | |
| 7911 | if effectde>=2 then | |
| 7912 | effectde=0 | |
| 7913 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,math.random(-6,2),math.random(-30,30))*CFrame.Angles(math.rad(math.random(1,30)),math.random(-120,120),0),3,3,20,0,0,0,.05,"Sphere",4,math.random(-2,2),"",100,200,150) | |
| 7914 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,math.random(-6,2),math.random(-30,30))*CFrame.Angles(math.rad(math.random(1,30)),math.random(-120,120),0),3,3,20,0,0,0,.05,"Sphere",4,math.random(-2,2),"",100,200,150) | |
| 7915 | end | |
| 7916 | elseif mode=="Dreary" then | |
| 7917 | SubMainWeld.C0=clerp(SubMainWeld.C0,CFrame.Angles(math.rad(doe+0*math.cos(sin/43)),math.rad(doe+56*math.sin(sin/40)),math.rad(doe+62*math.cos(sin/37))),.3) | |
| 7918 | local location=CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120))*CFrame.new(math.random(-35,35),math.random(-35,35),math.random(-35,35)) | |
| 7919 | effectde=effectde+1 | |
| 7920 | if effectde>=2 then | |
| 7921 | effectde=0 | |
| 7922 | Effect(e,modecolor[2],SubMain.CFrame*CFrame.Angles(0,math.rad(doe*4),0)*CFrame.new(0,0,5),88,3,3,0,-.2,-.2,.055,"Sphere",6,0,"") | |
| 7923 | Effect(e,modecolor[2],SubMain.CFrame*CFrame.Angles(0,math.rad(120+doe*4),0)*CFrame.new(0,0,5),88,3,3,0,-.2,-.2,.055,"Sphere",6,0,"") | |
| 7924 | Effect(e,modecolor[2],SubMain.CFrame*CFrame.Angles(0,math.rad(240+doe*4),0)*CFrame.new(0,0,5),88,3,3,0,-.2,-.2,.055,"Sphere",6,0,"") | |
| 7925 | end | |
| 7926 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(math.rad(-doe*2),math.rad(-doe*9),0)*CFrame.new(0,0,8),12,12,12,-.4,-.4,-.4,.03,"Sphere",6,0,"") | |
| 7927 | elseif mode=="Jade" then | |
| 7928 | effectde=effectde+1 | |
| 7929 | if effectde>=3 then | |
| 7930 | effectde=0 | |
| 7931 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*2),0)*CFrame.new(0,0,5)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),5,5,5,-.15,-.15,-.15,.03,"Brick",1,0,"") | |
| 7932 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(120+doe*2),0)*CFrame.new(0,0,5)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),5,5,5,-.15,-.15,-.15,.03,"Brick",1,0,"") | |
| 7933 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(240+doe*2),0)*CFrame.new(0,0,5)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),5,5,5,-.15,-.15,-.15,.03,"Brick",1,0,"") | |
| 7934 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(-doe*3),0)*CFrame.new(0,0,8)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),3,3,3,-.1,-.1,-.1,.04,"Brick",1,0,"") | |
| 7935 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(120-doe*3),0)*CFrame.new(0,0,8)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),3,3,3,-.1,-.1,-.1,.04,"Brick",1,0,"") | |
| 7936 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(240-doe*3),0)*CFrame.new(0,0,8)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120)),3,3,3,-.1,-.1,-.1,.04,"Brick",1,0,"") | |
| 7937 | end | |
| 7938 | elseif mode=="Psychosis" then | |
| 7939 | Effect(e,modecolor[2],Head.CFrame*CFrame.new(.2,.2,-.5)*CFrame.Angles(-math.rad(90+math.random(-12,12)),math.rad(math.random(-12,12)),math.random(-120,120)),2,2,2,-.06,-.06,-.06,.03,"Brick",7,2,"") | |
| 7940 | REffect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-20,20))*CFrame.Angles(math.rad(math.random(-30,30)),math.rad(math.random(-30,30)),math.rad(math.random(-30,30))),8,150,8,0,-9,0,.06,"Sphere",6,0,"") | |
| 7941 | elseif mode=="Conflagration" then | |
| 7942 | effectde=effectde+1 | |
| 7943 | if effectde>=5 then | |
| 7944 | effectde=0 | |
| 7945 | Effect(e,modecolor[2],RArm.CFrame*CFrame.new(math.random(-10,10)/15,-1.2,math.random(-10,10)/15)*CFrame.Angles(-math.rad(90),math.random(-120,120),math.random(-120,120)),5,5,5,-.1,-.1,-.1,.03,"Brick",1,0,"") | |
| 7946 | Effect(e,modecolor[2],LArm.CFrame*CFrame.new(math.random(-10,10)/15,-1.2,math.random(-10,10)/15)*CFrame.Angles(-math.rad(90),math.random(-120,120),math.random(-120,120)),5,5,5,-.1,-.1,-.1,.03,"Brick",1,0,"") | |
| 7947 | end | |
| 7948 | Effect(e,modecolor[1],RArm.CFrame*CFrame.new(math.random(-10,10)/15,-1.2,math.random(-10,10)/15)*CFrame.Angles(-math.rad(90),0,math.random(-120,120)),6,6,6,-.2,-.2,-.2,.05,"Brick",7,5,"") | |
| 7949 | Effect(e,modecolor[1],LArm.CFrame*CFrame.new(math.random(-10,10)/15,-1.2,math.random(-10,10)/15)*CFrame.Angles(-math.rad(90),0,math.random(-120,120)),6,6,6,-.2,-.2,-.2,.05,"Brick",7,5,"") | |
| 7950 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-30,30))*CFrame.Angles(-math.rad(90),0,0),6,6,6,-.2,-.2,-.2,.05,"Brick",7,5,"") | |
| 7951 | elseif mode=="Lullaby" then | |
| 7952 | effectde=effectde+1 | |
| 7953 | if effectde>=5 then | |
| 7954 | effectde=0 | |
| 7955 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.new(0,-3,0)*CFrame.Angles(0,0,math.rad(90)),2,50,50,0,-1,-1,.05,"Cylinder",5,0,"") | |
| 7956 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.new(0,-3,0)*CFrame.Angles(0,0,math.rad(90)),1,55,55,0,-1,-1,.03,"Cylinder",6,0,"") | |
| 7957 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*1.48),0)*CFrame.new(0,-3,6)*CFrame.Angles(-math.rad(90+math.random(-20,20)),0,0),5,5,5,-.2,-.2,-.2,.05,"Sphere",3,math.random(1,3)/10,"") | |
| 7958 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180-(doe*1.36)),0)*CFrame.new(0,-3,7)*CFrame.Angles(-math.rad(90+math.random(-20,20)),0,0),5,5,5,-.2,-.2,-.2,.03,"Sphere",3,math.random(1,3)/10,"") | |
| 7959 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*1.24),0)*CFrame.new(0,-3,8)*CFrame.Angles(-math.rad(90+math.random(-20,20)),0,0),5,5,5,-.2,-.2,-.2,.03,"Sphere",3,math.random(1,3)/10,"") | |
| 7960 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(-180-(doe*1.12)),0)*CFrame.new(0,-3,9)*CFrame.Angles(-math.rad(90+math.random(-20,20)),0,0),5,5,5,-.2,-.2,-.2,.03,"Sphere",3,math.random(1,3)/10,"") | |
| 7961 | end | |
| 7962 | elseif mode=="Somnambulist" then | |
| 7963 | local location=CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120))*CFrame.new(math.random(-35,35),math.random(-35,35),math.random(-35,35)) | |
| 7964 | effectde=effectde+1 | |
| 7965 | if effectde>=3 then | |
| 7966 | effectde=0 | |
| 7967 | local ma=math.random(10,60)/10 | |
| 7968 | Effect(e,modecolor[1],location,3+ma,3+ma,3+ma,0,0,2+ma*2,.05,"Sphere",6,0,"") | |
| 7969 | Effect(e,modecolor[1],location,3+ma,3+ma,3+ma,0,2+ma*2,0,.05,"Sphere",6,0,"") | |
| 7970 | Effect(e,modecolor[1],location,3+ma,3+ma,3+ma,2+ma*2,0,0,.05,"Sphere",6,0,"") | |
| 7971 | end | |
| 7972 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*7),0)*CFrame.new(0,-3,0),5,2,5,12,0,0,.04,"Sphere",6,0,"") | |
| 7973 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*7),0)*CFrame.new(0,-3,0),5,2,5,0,0,12,.04,"Sphere",6,0,"") | |
| 7974 | elseif mode=="Amativeness" then --mate | |
| 7975 | effectde=effectde+1 | |
| 7976 | if effectde>=2 then | |
| 7977 | effectde=0 | |
| 7978 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(math.random(-120,120),math.random(-120,120),math.random(-120,120))*CFrame.new(math.random(-25,25),0,math.random(-25,25)),7,7,7,-.1,-.1,-.1,.02,"Sphere",3,.4,"") | |
| 7979 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(math.random(-25,25),math.random(-15,15),math.random(-25,25)),.03,.03,.03,-0.001,-0.001,-0.001,.04,"FileMesh",6,0,"1419261836") | |
| 7980 | end | |
| 7981 | elseif mode=="Nil" then | |
| 7982 | local aa1=Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-40,40))*CFrame.Angles(math.rad(math.random(-30,30)),0,math.rad(math.random(-30,30))),8,8,8,0,9,0,.05,nilmeshtype[math.random(1,#nilmeshtype)],math.random(1,7),math.random(-30,30)/10,"",math.random(0,10),math.random(11,20),math.random(5,20)) | |
| 7983 | local aa2=REffect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-40,40))*CFrame.Angles(math.rad(math.random(-30,30)),0,math.rad(math.random(-30,30))),8,8,8,0,9,0,.05,nilmeshtype[math.random(1,#nilmeshtype)],math.random(1,7),math.random(-30,30)/10,"",math.random(0,10),math.random(11,20),math.random(5,20)) | |
| 7984 | local anothr=math.random(1,4) | |
| 7985 | if anothr<=2 then | |
| 7986 | aa1.Material=nilmaterial[math.random(1,#nilmaterial)] | |
| 7987 | aa2.Material=nilmaterial[math.random(1,#nilmaterial)] | |
| 7988 | elseif anothr>=3 then | |
| 7989 | aa1.Material="Neon" | |
| 7990 | aa2.Material="Neon" | |
| 7991 | end | |
| 7992 | elseif mode=="Wither" then | |
| 7993 | local hit,pos=rayCast(Root.Position,(CFrame.new(Root.Position,Root.Position-Vector3.new(0,1,0))).lookVector,111,chr) | |
| 7994 | if hit~=nil then | |
| 7995 | Effect(e,modecolor[1],CFrame.new(pos)*CFrame.Angles(0,math.rad(doe*17),0),11,3,11,3,0,32,.05,"Sphere",6,0,"") | |
| 7996 | Effect(e,modecolor[2],CFrame.new(pos)*CFrame.Angles(0,math.rad(-doe*13),0),11,1,11,2,.1,9,.04,"Sphere",3,3.5,"") | |
| 7997 | Effect(e,modecolor[2],CFrame.new(pos)*CFrame.Angles(0,math.rad(180-doe*13),0),11,1,11,2,.1,9,.04,"Sphere",3,3.5,"") | |
| 7998 | end | |
| 7999 | elseif mode=="True Catastrophe" then | |
| 8000 | local hit,pos=rayCast(Root.Position,(CFrame.new(Root.Position,Root.Position-Vector3.new(0,1,0))).lookVector,999,chr) | |
| 8001 | if hit~=nil then | |
| 8002 | Effect(e,modecolor[2],CFrame.new(pos)*CFrame.Angles(0,math.rad(doe*13),0),56,2,56,182,0,0,.07,"Sphere",6,0,"") | |
| 8003 | Effect(e,modecolor[2],CFrame.new(pos)*CFrame.Angles(0,math.rad(doe*13),0),36,2,36,82,0,0,.07,"Sphere",3,9,"") | |
| 8004 | Effect(e,modecolor[2],CFrame.new(pos)*CFrame.Angles(0,math.rad(180+doe*13),0),36,2,36,82,0,0,.07,"Sphere",3,9,"") | |
| 8005 | end | |
| 8006 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-320,320))*CFrame.Angles(math.rad(-90+math.random(-30,30)),0,math.rad(math.random(-30,30))),12,12,12,1,1,50,.04,"Sphere",3,math.random(2,7),"") | |
| 8007 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-320,320))*CFrame.Angles(math.rad(-90+math.random(-30,30)),0,math.rad(math.random(-30,30))),12,12,12,1,1,50,.04,"Sphere",3,math.random(2,7),"") | |
| 8008 | elseif mode=="Cyclone" then | |
| 8009 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-30,30))*CFrame.Angles(-math.rad(90),0,0),8,8,8,-1,-1,-1,.09,"Sphere",3,5,"") | |
| 8010 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-30,30))*CFrame.Angles(-math.rad(90),0,0),8,8,8,-1,-1,-1,.09,"Sphere",3,5,"") | |
| 8011 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(math.random(-30,30)/5,math.random(-30,30)/5,math.random(-30,30)/5)*CFrame.Angles(-math.rad(90),0,0),2,2,4,0,0,8,.15,"Sphere",3,2,"") | |
| 8012 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(math.random(-30,30)/5,math.random(-30,30)/5,math.random(-30,30)/5)*CFrame.Angles(-math.rad(90),0,0),2,2,4,0,0,8,.15,"Sphere",3,2,"") | |
| 8013 | elseif mode=="Minstrel" then | |
| 8014 | effectde=effectde+1 | |
| 8015 | if effectde>=5 then | |
| 8016 | effectde=0 | |
| 8017 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.new(0,-3,0),35,2,35,0,0,0,.04,"Sphere",6,0,"") | |
| 8018 | end | |
| 8019 | if effectde>=3 then | |
| 8020 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(-doe*(GetClientProperty(theme,'PlaybackLoudness')/100)),0)*CFrame.new(0,-3,5),1+(GetClientProperty(theme,'PlaybackLoudness')/10),1,1+(GetClientProperty(theme,'PlaybackLoudness')/10),0,0,0+(GetClientProperty(theme,'PlaybackLoudness')/60),.04,"Sphere",3,0+(GetClientProperty(theme,'PlaybackLoudness')/250),"") | |
| 8021 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*(GetClientProperty(theme,'PlaybackLoudness')/100)),0)*CFrame.new(0,-3,5),1+(GetClientProperty(theme,'PlaybackLoudness')/10),1,1+(GetClientProperty(theme,'PlaybackLoudness')/10),0,0,0+(GetClientProperty(theme,'PlaybackLoudness')/60),.04,"Sphere",3,0+(GetClientProperty(theme,'PlaybackLoudness')/250),"") | |
| 8022 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180-doe*(GetClientProperty(theme,'PlaybackLoudness')/100)),0)*CFrame.new(0,-3,5),1+(GetClientProperty(theme,'PlaybackLoudness')/10),1,1+(GetClientProperty(theme,'PlaybackLoudness')/10),0,0,0+(GetClientProperty(theme,'PlaybackLoudness')/60),.04,"Sphere",3,0+(GetClientProperty(theme,'PlaybackLoudness')/250),"") | |
| 8023 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+doe*(GetClientProperty(theme,'PlaybackLoudness')/100)),0)*CFrame.new(0,-3,5),1+(GetClientProperty(theme,'PlaybackLoudness')/10),1,1+(GetClientProperty(theme,'PlaybackLoudness')/10),0,0,0+(GetClientProperty(theme,'PlaybackLoudness')/60),.04,"Sphere",3,0+(GetClientProperty(theme,'PlaybackLoudness')/250),"") | |
| 8024 | end | |
| 8025 | elseif mode=="Sombra" then | |
| 8026 | effectde=effectde+1 | |
| 8027 | if effectde>=2 then | |
| 8028 | effectde=0 | |
| 8029 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*3),0)*CFrame.new(0,-3,12)*CFrame.Angles(0,0,math.rad(90)),1,18,18,0,-.9,-.9,.07,"Cylinder",6,0,"") | |
| 8030 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+doe*3),0)*CFrame.new(0,-3,12)*CFrame.Angles(0,0,math.rad(90)),1,18,18,0,-.9,-.9,.07,"Cylinder",6,0,"") | |
| 8031 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(-doe*3),0)*CFrame.new(0,-3,9)*CFrame.Angles(0,0,math.rad(90)),1,18,18,0,-.9,-.9,.07,"Cylinder",6,0,"") | |
| 8032 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180-doe*3),0)*CFrame.new(0,-3,9)*CFrame.Angles(0,0,math.rad(90)),1,18,18,0,-.9,-.9,.07,"Cylinder",6,0,"") | |
| 8033 | end | |
| 8034 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.new(0,-3,0)*CFrame.Angles(0,0,math.rad(90)),2,55,55,-.05,-1.3,-1.3,.03,"Cylinder",6,0,"") | |
| 8035 | elseif mode=="Fictitious" then | |
| 8036 | effectde=effectde+1 | |
| 8037 | if effectde>=2 then | |
| 8038 | effectde=0 | |
| 8039 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.new(math.random(-25,25),math.random(-25,25),math.random(-25,25)),1,1,1,1,1,1,.05,"Brick",6,0,"") | |
| 8040 | REffect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.new(math.random(-25,25),math.random(-25,25),math.random(-25,25)),21,21,21,-1,-1,-1,.05,"Brick",6,0,"") | |
| 8041 | end | |
| 8042 | elseif mode=="Benevolence" then | |
| 8043 | effectde=effectde+1 | |
| 8044 | if effectde>=3 then | |
| 8045 | effectde=0 | |
| 8046 | local hit,pos=rayCast(Root.Position,(CFrame.new(Root.Position,Root.Position-Vector3.new(0,1,0))).lookVector,111,chr) | |
| 8047 | if hit~=nil then | |
| 8048 | Effect(e,modecolor[1],CFrame.new(pos),12,2,12,12,0,-.5,.04,"Sphere",6,0,"") | |
| 8049 | Effect(e,modecolor[1],CFrame.new(pos),12,2,12,-.5,0,12,.04,"Sphere",6,0,"") | |
| 8050 | Effect(e,modecolor[2],CFrame.new(pos)*CFrame.Angles(0,math.rad(-doe*4),0),12,1,12,5,0,5,.07,"Brick",2,-13,"") | |
| 8051 | end | |
| 8052 | end | |
| 8053 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.random(-120,120),0)*CFrame.new(0,-3,math.random(-30,30))*CFrame.Angles(-math.rad(90),0,0),4,4,4,-0,0,3,.05,"Sphere",3,1,"") | |
| 8054 | elseif mode=="Exhaustion" then | |
| 8055 | effectde=effectde+1 | |
| 8056 | if effectde>=1 then | |
| 8057 | effectde=0 | |
| 8058 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*17),0)*CFrame.new(0,-math.random(-14,3),math.random(-650,650))*CFrame.Angles(-math.rad(60+math.random(-40,40)),0,math.random(-40,40)),90,90,90,-2,-2,-2,.02,"Sphere",3,math.random(6,13),"") | |
| 8059 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+(doe*17)),0)*CFrame.new(0,-math.random(-14,3),math.random(-650,650))*CFrame.Angles(-math.rad(60+math.random(-40,40)),0,math.random(-40,40)),90,90,90,-2,-2,-2,.02,"Sphere",3,math.random(6,13),"") | |
| 8060 | Effect(e,modecolor[1],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(doe*13),0)*CFrame.new(0,-math.random(-14,3),math.random(300,500))*CFrame.Angles(-math.rad(60+math.random(-40,40)),0,0),124,124,95,5,5,150,.05,"Sphere",3,math.random(17,33),"") | |
| 8061 | Effect(e,modecolor[2],CFrame.new(Root.Position)*CFrame.Angles(0,math.rad(180+(doe*13)),0)*CFrame.new(0,-math.random(-14,3),math.random(300,500))*CFrame.Angles(-math.rad(60+math.random(-40,40)),0,0),124,124,95,5,5,150,.05,"Sphere",3,math.random(17,33),"") | |
| 8062 | end | |
| 8063 | end | |
| 8064 | end | |
| 8065 | end | |
| 8066 | --Aprins... | |
| 8067 | ||
| 8068 | ||
| 8069 | ------------------------------------------------- |