SHOW:
|
|
- or go back to the newest paste.
| 1 | --https://github.com/Mokiros/roblox-FE-compatibility | |
| 2 | if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
| |
| 3 | local Player,game,owner = owner,game | |
| 4 | local RealPlayer = Player | |
| 5 | do | |
| 6 | print("FE Compatibility code V2 by Mokiros")
| |
| 7 | local RealPlayer = RealPlayer | |
| 8 | script.Parent = RealPlayer.Character | |
| 9 | ||
| 10 | --Fake event to make stuff like Mouse.KeyDown work | |
| 11 | local Disconnect_Function = function(this) | |
| 12 | this[1].Functions[this[2]] = nil | |
| 13 | end | |
| 14 | local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
| |
| 15 | local FakeEvent_Metatable = {__index={
| |
| 16 | Connect = function(this,f) | |
| 17 | local i = tostring(math.random(0,10000)) | |
| 18 | while this.Functions[i] do | |
| 19 | i = tostring(math.random(0,10000)) | |
| 20 | end | |
| 21 | this.Functions[i] = f | |
| 22 | return setmetatable({this,i},Disconnect_Metatable)
| |
| 23 | end | |
| 24 | }} | |
| 25 | FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect | |
| 26 | local function fakeEvent() | |
| 27 | return setmetatable({Functions={}},FakeEvent_Metatable)
| |
| 28 | end | |
| 29 | ||
| 30 | --Creating fake input objects with fake variables | |
| 31 | local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
| |
| 32 | FakeMouse.keyUp = FakeMouse.KeyUp | |
| 33 | FakeMouse.keyDown = FakeMouse.KeyDown | |
| 34 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
| |
| 35 | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
| |
| 36 | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
| |
| 37 | end} | |
| 38 | --Merged 2 functions into one by checking amount of arguments | |
| 39 | CAS.UnbindAction = CAS.BindAction | |
| 40 | ||
| 41 | --This function will trigger the events that have been :Connect()'ed | |
| 42 | local function TriggerEvent(self,ev,...) | |
| 43 | for _,f in pairs(self[ev].Functions) do | |
| 44 | f(...) | |
| 45 | end | |
| 46 | end | |
| 47 | FakeMouse.TriggerEvent = TriggerEvent | |
| 48 | UIS.TriggerEvent = TriggerEvent | |
| 49 | ||
| 50 | --Client communication | |
| 51 | local Event = Instance.new("RemoteEvent")
| |
| 52 | Event.Name = "UserInput_Event" | |
| 53 | Event.OnServerEvent:Connect(function(plr,io) | |
| 54 | if plr~=RealPlayer then return end | |
| 55 | FakeMouse.Target = io.Target | |
| 56 | FakeMouse.Hit = io.Hit | |
| 57 | if not io.isMouse then | |
| 58 | local b = io.UserInputState == Enum.UserInputState.Begin | |
| 59 | if io.UserInputType == Enum.UserInputType.MouseButton1 then | |
| 60 | return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up") | |
| 61 | end | |
| 62 | if io.UserInputType == Enum.UserInputType.MouseButton2 then | |
| 63 | return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up") | |
| 64 | end | |
| 65 | for _,t in pairs(CAS.Actions) do | |
| 66 | for _,k in pairs(t.Keys) do | |
| 67 | if k==io.KeyCode then | |
| 68 | t.Function(t.Name,io.UserInputState,io) | |
| 69 | end | |
| 70 | end | |
| 71 | end | |
| 72 | FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) | |
| 73 | UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false) | |
| 74 | end | |
| 75 | end) | |
| 76 | Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
| |
| 77 | local Mouse = owner:GetMouse() | |
| 78 | local UIS = game:GetService("UserInputService")
| |
| 79 | local input = function(io,RobloxHandled) | |
| 80 | if RobloxHandled then return end | |
| 81 | --Since InputObject is a client-side instance, we create and pass table instead | |
| 82 | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
| |
| 83 | end | |
| 84 | UIS.InputBegan:Connect(input) | |
| 85 | UIS.InputEnded:Connect(input) | |
| 86 | ||
| 87 | local h,t | |
| 88 | --Give the server mouse data every second frame, but only if the values changed | |
| 89 | --If player is not moving their mouse, client won't fire events | |
| 90 | local HB = game:GetService("RunService").Heartbeat
| |
| 91 | while true do | |
| 92 | if h~=Mouse.Hit or t~=Mouse.Target then | |
| 93 | h,t=Mouse.Hit,Mouse.Target | |
| 94 | Event:FireServer({isMouse=true,Target=t,Hit=h})
| |
| 95 | end | |
| 96 | --Wait 2 frames | |
| 97 | for i=1,2 do | |
| 98 | HB:Wait() | |
| 99 | end | |
| 100 | end]==],script) | |
| 101 | ||
| 102 | ----Sandboxed game object that allows the usage of client-side methods and services | |
| 103 | --Real game object | |
| 104 | local RealGame = game | |
| 105 | ||
| 106 | --Metatable for fake service | |
| 107 | local FakeService_Metatable = {
| |
| 108 | __index = function(self,k) | |
| 109 | local s = rawget(self,"_RealService") | |
| 110 | if s then | |
| 111 | return typeof(s[k])=="function" | |
| 112 | and function(_,...)return s[k](s,...)end or s[k] | |
| 113 | end | |
| 114 | end, | |
| 115 | __newindex = function(self,k,v) | |
| 116 | local s = rawget(self,"_RealService") | |
| 117 | if s then s[k]=v end | |
| 118 | end | |
| 119 | } | |
| 120 | local function FakeService(t,RealService) | |
| 121 | t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService | |
| 122 | return setmetatable(t,FakeService_Metatable) | |
| 123 | end | |
| 124 | ||
| 125 | --Fake game object | |
| 126 | local FakeGame = {
| |
| 127 | GetService = function(self,s) | |
| 128 | return rawget(self,s) or RealGame:GetService(s) | |
| 129 | end, | |
| 130 | Players = FakeService({
| |
| 131 | LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
| |
| 132 | },"Players"), | |
| 133 | UserInputService = FakeService(UIS,"UserInputService"), | |
| 134 | ContextActionService = FakeService(CAS,"ContextActionService"), | |
| 135 | RunService = FakeService({
| |
| 136 | _btrs = {},
| |
| 137 | RenderStepped = RealGame:GetService("RunService").Heartbeat,
| |
| 138 | BindToRenderStep = function(self,name,_,fun) | |
| 139 | self._btrs[name] = self.Heartbeat:Connect(fun) | |
| 140 | end, | |
| 141 | UnbindFromRenderStep = function(self,name) | |
| 142 | self._btrs[name]:Disconnect() | |
| 143 | end, | |
| 144 | },"RunService") | |
| 145 | } | |
| 146 | rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer) | |
| 147 | FakeGame.service = FakeGame.GetService | |
| 148 | FakeService(FakeGame,game) | |
| 149 | --Changing owner to fake player object to support owner:GetMouse() | |
| 150 | game,owner = FakeGame,FakeGame.Players.LocalPlayer | |
| 151 | end | |
| 152 | ||
| 153 | --epic blade | |
| 154 | function sandbox(var,func) | |
| 155 | local env = getfenv(func) | |
| 156 | local newenv = setmetatable({},{
| |
| 157 | __index = function(self,k) | |
| 158 | if k=="script" then | |
| 159 | return var | |
| 160 | else | |
| 161 | return env[k] | |
| 162 | end | |
| 163 | end, | |
| 164 | }) | |
| 165 | setfenv(func,newenv) | |
| 166 | return func | |
| 167 | end | |
| 168 | cors = {}
| |
| 169 | mas = Instance.new("Model",game:GetService("Lighting"))
| |
| 170 | Tool0 = Instance.new("Tool")
| |
| 171 | Script1 = Instance.new("Script")
| |
| 172 | LocalScript2 = Instance.new("LocalScript")
| |
| 173 | Animation3 = Instance.new("Animation")
| |
| 174 | Script4 = Instance.new("Script")
| |
| 175 | StringValue5 = Instance.new("StringValue")
| |
| 176 | Part6 = Instance.new("Part")
| |
| 177 | SpecialMesh7 = Instance.new("SpecialMesh")
| |
| 178 | PointLight8 = Instance.new("PointLight")
| |
| 179 | Script9 = Instance.new("Script")
| |
| 180 | Script10 = Instance.new("Script")
| |
| 181 | Script11 = Instance.new("Script")
| |
| 182 | Animation12 = Instance.new("Animation")
| |
| 183 | Script13 = Instance.new("Script")
| |
| 184 | LocalScript14 = Instance.new("LocalScript")
| |
| 185 | Part15 = Instance.new("Part")
| |
| 186 | Script16 = Instance.new("Script")
| |
| 187 | Part17 = Instance.new("Part")
| |
| 188 | Script18 = Instance.new("Script")
| |
| 189 | Part19 = Instance.new("Part")
| |
| 190 | Script20 = Instance.new("Script")
| |
| 191 | Part21 = Instance.new("Part")
| |
| 192 | Part22 = Instance.new("Part")
| |
| 193 | Part23 = Instance.new("Part")
| |
| 194 | Part24 = Instance.new("Part")
| |
| 195 | Part25 = Instance.new("Part")
| |
| 196 | Part26 = Instance.new("Part")
| |
| 197 | Part27 = Instance.new("Part")
| |
| 198 | Part28 = Instance.new("Part")
| |
| 199 | Part29 = Instance.new("Part")
| |
| 200 | Part30 = Instance.new("Part")
| |
| 201 | Part31 = Instance.new("Part")
| |
| 202 | Part32 = Instance.new("Part")
| |
| 203 | Part33 = Instance.new("Part")
| |
| 204 | Part34 = Instance.new("Part")
| |
| 205 | Part35 = Instance.new("Part")
| |
| 206 | Part36 = Instance.new("Part")
| |
| 207 | Part37 = Instance.new("Part")
| |
| 208 | Part38 = Instance.new("Part")
| |
| 209 | Part39 = Instance.new("Part")
| |
| 210 | Part40 = Instance.new("Part")
| |
| 211 | Part41 = Instance.new("Part")
| |
| 212 | Part42 = Instance.new("Part")
| |
| 213 | Part43 = Instance.new("Part")
| |
| 214 | Part44 = Instance.new("Part")
| |
| 215 | Part45 = Instance.new("Part")
| |
| 216 | Part46 = Instance.new("Part")
| |
| 217 | Part47 = Instance.new("Part")
| |
| 218 | Part48 = Instance.new("Part")
| |
| 219 | Part49 = Instance.new("Part")
| |
| 220 | Part50 = Instance.new("Part")
| |
| 221 | Part51 = Instance.new("Part")
| |
| 222 | Part52 = Instance.new("Part")
| |
| 223 | Part53 = Instance.new("Part")
| |
| 224 | Part54 = Instance.new("Part")
| |
| 225 | Part55 = Instance.new("Part")
| |
| 226 | Part56 = Instance.new("Part")
| |
| 227 | Part57 = Instance.new("Part")
| |
| 228 | Part58 = Instance.new("Part")
| |
| 229 | Part59 = Instance.new("Part")
| |
| 230 | Part60 = Instance.new("Part")
| |
| 231 | Part61 = Instance.new("Part")
| |
| 232 | Part62 = Instance.new("Part")
| |
| 233 | Part63 = Instance.new("Part")
| |
| 234 | Part64 = Instance.new("Part")
| |
| 235 | Part65 = Instance.new("Part")
| |
| 236 | Part66 = Instance.new("Part")
| |
| 237 | Part67 = Instance.new("Part")
| |
| 238 | Part68 = Instance.new("Part")
| |
| 239 | Part69 = Instance.new("Part")
| |
| 240 | Part70 = Instance.new("Part")
| |
| 241 | Part71 = Instance.new("Part")
| |
| 242 | Part72 = Instance.new("Part")
| |
| 243 | Part73 = Instance.new("Part")
| |
| 244 | Part74 = Instance.new("Part")
| |
| 245 | Part75 = Instance.new("Part")
| |
| 246 | Part76 = Instance.new("Part")
| |
| 247 | Part77 = Instance.new("Part")
| |
| 248 | Part78 = Instance.new("Part")
| |
| 249 | Part79 = Instance.new("Part")
| |
| 250 | Part80 = Instance.new("Part")
| |
| 251 | Part81 = Instance.new("Part")
| |
| 252 | Part82 = Instance.new("Part")
| |
| 253 | Part83 = Instance.new("Part")
| |
| 254 | Part84 = Instance.new("Part")
| |
| 255 | Part85 = Instance.new("Part")
| |
| 256 | Part86 = Instance.new("Part")
| |
| 257 | Part87 = Instance.new("Part")
| |
| 258 | Part88 = Instance.new("Part")
| |
| 259 | Part89 = Instance.new("Part")
| |
| 260 | Part90 = Instance.new("Part")
| |
| 261 | Part91 = Instance.new("Part")
| |
| 262 | Part92 = Instance.new("Part")
| |
| 263 | Part93 = Instance.new("Part")
| |
| 264 | Part94 = Instance.new("Part")
| |
| 265 | Part95 = Instance.new("Part")
| |
| 266 | Part96 = Instance.new("Part")
| |
| 267 | Part97 = Instance.new("Part")
| |
| 268 | Part98 = Instance.new("Part")
| |
| 269 | Part99 = Instance.new("Part")
| |
| 270 | Part100 = Instance.new("Part")
| |
| 271 | Part101 = Instance.new("Part")
| |
| 272 | Part102 = Instance.new("Part")
| |
| 273 | Part103 = Instance.new("Part")
| |
| 274 | Part104 = Instance.new("Part")
| |
| 275 | Part105 = Instance.new("Part")
| |
| 276 | Part106 = Instance.new("Part")
| |
| 277 | Part107 = Instance.new("Part")
| |
| 278 | Part108 = Instance.new("Part")
| |
| 279 | Part109 = Instance.new("Part")
| |
| 280 | Part110 = Instance.new("Part")
| |
| 281 | Part111 = Instance.new("Part")
| |
| 282 | Part112 = Instance.new("Part")
| |
| 283 | Part113 = Instance.new("Part")
| |
| 284 | Part114 = Instance.new("Part")
| |
| 285 | Part115 = Instance.new("Part")
| |
| 286 | Part116 = Instance.new("Part")
| |
| 287 | Part117 = Instance.new("Part")
| |
| 288 | Part118 = Instance.new("Part")
| |
| 289 | Part119 = Instance.new("Part")
| |
| 290 | Part120 = Instance.new("Part")
| |
| 291 | Part121 = Instance.new("Part")
| |
| 292 | Part122 = Instance.new("Part")
| |
| 293 | Part123 = Instance.new("Part")
| |
| 294 | Part124 = Instance.new("Part")
| |
| 295 | Part125 = Instance.new("Part")
| |
| 296 | Part126 = Instance.new("Part")
| |
| 297 | Part127 = Instance.new("Part")
| |
| 298 | Part128 = Instance.new("Part")
| |
| 299 | Part129 = Instance.new("Part")
| |
| 300 | Part130 = Instance.new("Part")
| |
| 301 | Part131 = Instance.new("Part")
| |
| 302 | Part132 = Instance.new("Part")
| |
| 303 | Part133 = Instance.new("Part")
| |
| 304 | Part134 = Instance.new("Part")
| |
| 305 | Part135 = Instance.new("Part")
| |
| 306 | Part136 = Instance.new("Part")
| |
| 307 | Part137 = Instance.new("Part")
| |
| 308 | Part138 = Instance.new("Part")
| |
| 309 | Part139 = Instance.new("Part")
| |
| 310 | Part140 = Instance.new("Part")
| |
| 311 | Part141 = Instance.new("Part")
| |
| 312 | Part142 = Instance.new("Part")
| |
| 313 | Part143 = Instance.new("Part")
| |
| 314 | Part144 = Instance.new("Part")
| |
| 315 | Part145 = Instance.new("Part")
| |
| 316 | Part146 = Instance.new("Part")
| |
| 317 | Part147 = Instance.new("Part")
| |
| 318 | Part148 = Instance.new("Part")
| |
| 319 | Part149 = Instance.new("Part")
| |
| 320 | Part150 = Instance.new("Part")
| |
| 321 | Part151 = Instance.new("Part")
| |
| 322 | Part152 = Instance.new("Part")
| |
| 323 | Part153 = Instance.new("Part")
| |
| 324 | Part154 = Instance.new("Part")
| |
| 325 | Part155 = Instance.new("Part")
| |
| 326 | Part156 = Instance.new("Part")
| |
| 327 | Part157 = Instance.new("Part")
| |
| 328 | Part158 = Instance.new("Part")
| |
| 329 | Part159 = Instance.new("Part")
| |
| 330 | Part160 = Instance.new("Part")
| |
| 331 | Part161 = Instance.new("Part")
| |
| 332 | Part162 = Instance.new("Part")
| |
| 333 | Part163 = Instance.new("Part")
| |
| 334 | Part164 = Instance.new("Part")
| |
| 335 | Part165 = Instance.new("Part")
| |
| 336 | Part166 = Instance.new("Part")
| |
| 337 | Part167 = Instance.new("Part")
| |
| 338 | Part168 = Instance.new("Part")
| |
| 339 | Part169 = Instance.new("Part")
| |
| 340 | Part170 = Instance.new("Part")
| |
| 341 | Part171 = Instance.new("Part")
| |
| 342 | Part172 = Instance.new("Part")
| |
| 343 | Part173 = Instance.new("Part")
| |
| 344 | Part174 = Instance.new("Part")
| |
| 345 | Part175 = Instance.new("Part")
| |
| 346 | Part176 = Instance.new("Part")
| |
| 347 | Part177 = Instance.new("Part")
| |
| 348 | Part178 = Instance.new("Part")
| |
| 349 | Part179 = Instance.new("Part")
| |
| 350 | Part180 = Instance.new("Part")
| |
| 351 | Part181 = Instance.new("Part")
| |
| 352 | Part182 = Instance.new("Part")
| |
| 353 | Part183 = Instance.new("Part")
| |
| 354 | Part184 = Instance.new("Part")
| |
| 355 | Part185 = Instance.new("Part")
| |
| 356 | Part186 = Instance.new("Part")
| |
| 357 | Part187 = Instance.new("Part")
| |
| 358 | Part188 = Instance.new("Part")
| |
| 359 | Part189 = Instance.new("Part")
| |
| 360 | Part190 = Instance.new("Part")
| |
| 361 | Part191 = Instance.new("Part")
| |
| 362 | Part192 = Instance.new("Part")
| |
| 363 | Part193 = Instance.new("Part")
| |
| 364 | Part194 = Instance.new("Part")
| |
| 365 | Part195 = Instance.new("Part")
| |
| 366 | Part196 = Instance.new("Part")
| |
| 367 | Part197 = Instance.new("Part")
| |
| 368 | Part198 = Instance.new("Part")
| |
| 369 | Part199 = Instance.new("Part")
| |
| 370 | Part200 = Instance.new("Part")
| |
| 371 | Part201 = Instance.new("Part")
| |
| 372 | Part202 = Instance.new("Part")
| |
| 373 | Part203 = Instance.new("Part")
| |
| 374 | Part204 = Instance.new("Part")
| |
| 375 | Part205 = Instance.new("Part")
| |
| 376 | Part206 = Instance.new("Part")
| |
| 377 | Part207 = Instance.new("Part")
| |
| 378 | Part208 = Instance.new("Part")
| |
| 379 | Part209 = Instance.new("Part")
| |
| 380 | Part210 = Instance.new("Part")
| |
| 381 | Part211 = Instance.new("Part")
| |
| 382 | Part212 = Instance.new("Part")
| |
| 383 | Part213 = Instance.new("Part")
| |
| 384 | Part214 = Instance.new("Part")
| |
| 385 | Part215 = Instance.new("Part")
| |
| 386 | Part216 = Instance.new("Part")
| |
| 387 | Part217 = Instance.new("Part")
| |
| 388 | Part218 = Instance.new("Part")
| |
| 389 | Part219 = Instance.new("Part")
| |
| 390 | Part220 = Instance.new("Part")
| |
| 391 | Part221 = Instance.new("Part")
| |
| 392 | Part222 = Instance.new("Part")
| |
| 393 | Part223 = Instance.new("Part")
| |
| 394 | Part224 = Instance.new("Part")
| |
| 395 | Script225 = Instance.new("Script")
| |
| 396 | Script226 = Instance.new("Script")
| |
| 397 | Script227 = Instance.new("Script")
| |
| 398 | LocalScript228 = Instance.new("LocalScript")
| |
| 399 | Tool0.Name = "TerraBlade" | |
| 400 | Tool0.Parent = mas | |
| 401 | Tool0.TextureId = "http://www.roblox.com/asset/?id=139455378" | |
| 402 | Tool0.GripForward = Vector3.new(2.62268344e-07, -0, 1) | |
| 403 | Tool0.GripPos = Vector3.new(-0.0500001907, -1.5, 1.74845525e-08) | |
| 404 | Tool0.GripRight = Vector3.new(-1, 0, 2.62268344e-07) | |
| 405 | Script1.Name = "SwordScript" | |
| 406 | Script1.Parent = Tool0 | |
| 407 | table.insert(cors,sandbox(Script1,function() | |
| 408 | --Stickmasterluke | |
| 409 | ||
| 410 | ||
| 411 | sp=script.Parent | |
| 412 | ||
| 413 | ||
| 414 | r=game:service("RunService")
| |
| 415 | debris=game:GetService("Debris")
| |
| 416 | ||
| 417 | anims={"RightSlash","LeftSlash"}
| |
| 418 | ||
| 419 | basedamage=100 | |
| 420 | slashdamage=125 | |
| 421 | swingdamage=125 | |
| 422 | damage=basedamage | |
| 423 | ||
| 424 | specialready=true | |
| 425 | lastclick=0 | |
| 426 | ||
| 427 | sword=sp.Handle | |
| 428 | ||
| 429 | local SlashSound=Instance.new("Sound")
| |
| 430 | SlashSound.SoundId="rbxasset://sounds\\swordslash.wav" | |
| 431 | SlashSound.Parent=sword | |
| 432 | SlashSound.Volume=1 | |
| 433 | ||
| 434 | local UnsheathSound=Instance.new("Sound")
| |
| 435 | UnsheathSound.SoundId="rbxasset://sounds\\unsheath.wav" | |
| 436 | UnsheathSound.Parent=sword | |
| 437 | UnsheathSound.Volume=1 | |
| 438 | ||
| 439 | function waitfor(parent,name) | |
| 440 | while true do | |
| 441 | local child=parent:FindFirstChild(name) | |
| 442 | if child~=nil then | |
| 443 | return child | |
| 444 | end | |
| 445 | wait() | |
| 446 | end | |
| 447 | end | |
| 448 | ||
| 449 | mesh=waitfor(sp.Handle,"Mesh") | |
| 450 | waitfor(sp,"RunAnim") | |
| 451 | debris=game:GetService("Debris")
| |
| 452 | ||
| 453 | function lunge() | |
| 454 | local anim = Instance.new("StringValue")
| |
| 455 | anim.Name = "toolanim" | |
| 456 | anim.Value = "Lunge" | |
| 457 | anim.Parent = sp | |
| 458 | end | |
| 459 | ||
| 460 | function blow(hit) | |
| 461 | if hit.Parent~=nil then | |
| 462 | local humanoid=hit.Parent:findFirstChild("Humanoid")
| |
| 463 | local vCharacter=sp.Parent | |
| 464 | if vCharacter~=nil then | |
| 465 | local vPlayer=game.Players:playerFromCharacter(vCharacter) | |
| 466 | if vPlayer~=nil then | |
| 467 | local hum=vCharacter:findFirstChild("Humanoid")
| |
| 468 | if humanoid~=nil then | |
| 469 | if hum~=nil and humanoid~=hum then | |
| 470 | local right_arm=vCharacter:FindFirstChild("Right Arm")
| |
| 471 | if right_arm~=nil then | |
| 472 | local joint=right_arm:FindFirstChild("RightGrip")
| |
| 473 | if joint~=nil and (joint.Part0==sword or joint.Part1==sword) then | |
| 474 | tagHumanoid(humanoid,vPlayer) | |
| 475 | humanoid:TakeDamage(damage) | |
| 476 | end | |
| 477 | end | |
| 478 | end | |
| 479 | end | |
| 480 | end | |
| 481 | end | |
| 482 | end | |
| 483 | end | |
| 484 | ||
| 485 | ||
| 486 | function tagHumanoid(humanoid,player) | |
| 487 | for i,v in ipairs(humanoid:GetChildren()) do | |
| 488 | if v.Name=="creator" then | |
| 489 | v:remove() | |
| 490 | end | |
| 491 | end | |
| 492 | local creator_tag=Instance.new("ObjectValue")
| |
| 493 | creator_tag.Value=player | |
| 494 | creator_tag.Name="creator" | |
| 495 | creator_tag.Parent=humanoid | |
| 496 | debris:AddItem(creator_tag,1) | |
| 497 | end | |
| 498 | ||
| 499 | function lunge() | |
| 500 | local anim = Instance.new("StringValue")
| |
| 501 | anim.Name = "toolanim" | |
| 502 | anim.Value = "Lunge" | |
| 503 | anim.Parent = sp | |
| 504 | end | |
| 505 | ||
| 506 | sp.Enabled=true | |
| 507 | function onActivated() | |
| 508 | delay(.01,function() | |
| 509 | lastclick=tick() | |
| 510 | end) | |
| 511 | if sp.Enabled then | |
| 512 | sp.Enabled=false | |
| 513 | local character=sp.Parent; | |
| 514 | local humanoid=character.Humanoid | |
| 515 | if humanoid==nil then | |
| 516 | print("Humanoid not found")
| |
| 517 | return | |
| 518 | end | |
| 519 | if (tick()-lastclick)<.2 and specialready then | |
| 520 | SlashSound.Volume=1 | |
| 521 | SlashSound:play() | |
| 522 | lunge() | |
| 523 | specialready=false | |
| 524 | mesh.MeshId="http://www.roblox.com/asset/?id=" | |
| 525 | damage=0 | |
| 526 | local t=sp.Parent:FindFirstChild("Torso")
| |
| 527 | if t~=nil then | |
| 528 | local p=Instance.new("Part")
| |
| 529 | p.Transparency = .5 | |
| 530 | p.FormFactor="Custom" | |
| 531 | p.Size=Vector3.new(3,7.6,3) | |
| 532 | p.CanCollide=false | |
| 533 | p.TopSurface="Smooth" | |
| 534 | p.BottomSurface="Smooth" | |
| 535 | p.Velocity=t.CFrame.lookVector*30 | |
| 536 | p.CFrame=t.CFrame*CFrame.new(1.5,.5,-3)*CFrame.Angles(-math.pi/2,0,0) | |
| 537 | local f=Instance.new("Fire")
| |
| 538 | f.Heat=25 | |
| 539 | f.Size=12 | |
| 540 | f.Color=Color3.new(0,1,0.0666666666666667) | |
| 541 | f.SecondaryColor=Color3.new(0,1,0.0666666666666667) | |
| 542 | f.Enabled = true | |
| 543 | f.Parent=p | |
| 544 | local x=Instance.new("Fire")
| |
| 545 | x.Heat=-25 | |
| 546 | x.Size=10 | |
| 547 | x.Color=Color3.new(0,1,0.0666666666666667) | |
| 548 | x.SecondaryColor=Color3.new(0,1,0.0666666666666667) | |
| 549 | x.Enabled = true | |
| 550 | x.Parent=p | |
| 551 | local pdlwpwdlp=Instance.new("Sparkles") -- More effect.
| |
| 552 | pdlwpwdlp.SparkleColor=Color3.new(0,1,0.0666666666666667) | |
| 553 | pdlwpwdlp.Enabled=true | |
| 554 | pdlwpwdlp.Parent=p | |
| 555 | local von=Instance.new("Sparkles") -- More effect.
| |
| 556 | von.SparkleColor=Color3.new(0,1,0.0666666666666667) | |
| 557 | von.Enabled=true | |
| 558 | von.Parent=p | |
| 559 | local dere=Instance.new("Sparkles") -- More effect.
| |
| 560 | dere.SparkleColor=Color3.new(0,1,0.0666666666666667) | |
| 561 | dere.Enabled=true | |
| 562 | dere.Parent=p | |
| 563 | local stupidaf=Instance.new("PointLight") -- More effect.
| |
| 564 | stupidaf.Color=Color3.new(0,1,0.0666666666666667) | |
| 565 | stupidaf.Range=10 | |
| 566 | stupidaf.Brightness=1 | |
| 567 | stupidaf.Shadows=true | |
| 568 | stupidaf.Enabled=true | |
| 569 | stupidaf.Parent=p | |
| 570 | local m=Instance.new("SpecialMesh")
| |
| 571 | m.MeshId="http://www.roblox.com/asset/?id=53351910" --Projectile | |
| 572 | m.Scale=Vector3.new(-7.5,-7.5,-7.5) | |
| 573 | m.TextureId="http://www.roblox.com/asset/?id= 139496799 " --Projectile | |
| 574 | m.Parent=p | |
| 575 | local bf=Instance.new("BodyForce")
| |
| 576 | bf.force=Vector3.new(0,196.2*p:GetMass()) | |
| 577 | bf.Parent=p | |
| 578 | p.Touched:connect(function(hit) | |
| 579 | if hit~=nil then | |
| 580 | local h=hit.Parent:FindFirstChild("Humanoid")
| |
| 581 | local mh=sp.Parent:FindFirstChild("Humanoid")
| |
| 582 | if h~=nil and mh~=nil and h~=mh then | |
| 583 | local plr=game.Players:playerFromCharacter(mh.Parent) | |
| 584 | if plr~=nil then | |
| 585 | tagHumanoid(h,plr) | |
| 586 | end | |
| 587 | h:TakeDamage(500) | |
| 588 | p:remove() | |
| 589 | end | |
| 590 | end | |
| 591 | end) | |
| 592 | debris:AddItem(p,10) | |
| 593 | p.Parent=game.Workspace | |
| 594 | end | |
| 595 | wait() | |
| 596 | mesh.MeshId="http://www.roblox.com/asset/?id=" | |
| 597 | specialready=true | |
| 598 | else | |
| 599 | SlashSound.Volume=1 | |
| 600 | SlashSound:play() | |
| 601 | newanim=anims[math.random(1,#anims)] | |
| 602 | while newanim==sp.RunAnim.Value do | |
| 603 | newanim=anims[math.random(1,#anims)] | |
| 604 | end | |
| 605 | sp.RunAnim.Value=newanim | |
| 606 | if newanim=="OverHeadSwing" then | |
| 607 | damage=swingdamage | |
| 608 | else | |
| 609 | damage=slashdamage | |
| 610 | end | |
| 611 | wait(.3) | |
| 612 | end | |
| 613 | damage=basedamage | |
| 614 | sp.Enabled=true | |
| 615 | end | |
| 616 | end | |
| 617 | ||
| 618 | function onEquipped() | |
| 619 | UnsheathSound:play() | |
| 620 | end | |
| 621 | ||
| 622 | sp.Activated:connect(onActivated) | |
| 623 | sp.Equipped:connect(onEquipped) | |
| 624 | ||
| 625 | connection=sword.Touched:connect(blow) | |
| 626 | ||
| 627 | local player = game.Players.LocalPlayer | |
| 628 | print(player:GetFullName()) | |
| 629 | ||
| 630 | Workspace.LocalPlayer.Humanoid.MaxHealth = math.huge | |
| 631 | ||
| 632 | end)) | |
| 633 | LocalScript2.Name = "Local Gui" | |
| 634 | LocalScript2.Parent = Tool0 | |
| 635 | table.insert(cors,sandbox(LocalScript2,function() | |
| 636 | --Made by Stickmasterluke | |
| 637 | ||
| 638 | ||
| 639 | local sp=script.Parent | |
| 640 | ||
| 641 | originalgrip=CFrame.new(-0.0500001907, -1.5, 1.74845525e-008, -1, 0, -2.62268344e-007, 0, 1, 0, 2.62268344e-007, 0, -1)--CFrame.new(.15,-2,0)*CFrame.Angles(0,math.pi/2,0) | |
| 642 | currentgrip=originalgrip | |
| 643 | ||
| 644 | enabled=true | |
| 645 | ||
| 646 | function waitfor(parent,name) | |
| 647 | while true do | |
| 648 | local child=parent:FindFirstChild(name) | |
| 649 | if child~=nil then | |
| 650 | return child | |
| 651 | end | |
| 652 | wait() | |
| 653 | end | |
| 654 | end | |
| 655 | ||
| 656 | waitfor(sp,"Handle") | |
| 657 | ||
| 658 | function onButton1Down(mouse) | |
| 659 | if not enabled then | |
| 660 | return | |
| 661 | end | |
| 662 | enabled=false | |
| 663 | mouse.Icon="rbxasset://textures\\GunWaitCursor.png" | |
| 664 | wait(.75) | |
| 665 | mouse.Icon="rbxasset://textures\\GunCursor.png" | |
| 666 | enabled=true | |
| 667 | end | |
| 668 | ||
| 669 | originalgrip=CFrame.new(.15,-2,0)*CFrame.Angles(0,math.pi/2,0) | |
| 670 | currentgrip=originalgrip | |
| 671 | ||
| 672 | function swordUp() | |
| 673 | currentgrip=originalgrip | |
| 674 | end | |
| 675 | ||
| 676 | function swordOut() | |
| 677 | currentgrip=originalgrip*CFrame.Angles(math.pi/4,.4,0) | |
| 678 | end | |
| 679 | ||
| 680 | function onEquippedLocal(mouse) | |
| 681 | local currentlast=lastequipped | |
| 682 | if mouse==nil then | |
| 683 | print("Mouse not found")
| |
| 684 | return | |
| 685 | end | |
| 686 | mouse.Icon="rbxasset://textures\\GunCursor.png" | |
| 687 | mouse.Button1Down:connect(function() | |
| 688 | onButton1Down(mouse) | |
| 689 | end) | |
| 690 | end | |
| 691 | sp.Equipped:connect(onEquippedLocal) | |
| 692 | ||
| 693 | waitfor(sp,"RunAnim") | |
| 694 | sp.RunAnim.Changed:connect(function() | |
| 695 | local h=sp.Parent:FindFirstChild("Humanoid")
| |
| 696 | local t=sp.Parent:FindFirstChild("Torso")
| |
| 697 | local anim=sp:FindFirstChild(sp.RunAnim.Value) | |
| 698 | if anim and t and h then | |
| 699 | theanim=h:LoadAnimation(anim) | |
| 700 | if theanim and h.Health>0 then | |
| 701 | theanim:Play() | |
| 702 | if sp.RunAnim.Value=="OverHeadSwing" then | |
| 703 | wait(.25) | |
| 704 | swordOut() | |
| 705 | wait(.5) | |
| 706 | swordUp() | |
| 707 | sp.Grip=currentgrip | |
| 708 | elseif sp.RunAnim.Value=="OverHeadSwingFast" then | |
| 709 | wait(.125) | |
| 710 | swordOut() | |
| 711 | wait(.25) | |
| 712 | swordUp() | |
| 713 | sp.Grip=currentgrip | |
| 714 | end | |
| 715 | end | |
| 716 | end | |
| 717 | end) | |
| 718 | ||
| 719 | script.Parent.Parent.Humanoid.MaxHealth = 50000 | |
| 720 | script.Parent.Parent.Humanoid.Health = 50000 | |
| 721 | end)) | |
| 722 | Animation3.Name = "RightSlash" | |
| 723 | Animation3.Parent = Tool0 | |
| 724 | Animation3.AnimationId = "http://www.roblox.com/Asset?ID=74813494" | |
| 725 | Script4.Name = "AniSwitcher" | |
| 726 | Script4.Parent = Animation3 | |
| 727 | table.insert(cors,sandbox(Script4,function() | |
| 728 | while true do | |
| 729 | script.Parent.AnimationId="http://www.roblox.com/Asset?ID=74894663" | |
| 730 | wait(1)--Original | |
| 731 | script.Parent.AnimationId="http://www.roblox.com/asset/?id=73033705" | |
| 732 | wait(1)--Powerslash | |
| 733 | script.Parent.AnimationId="http://www.roblox.com/asset/?id=73033682" | |
| 734 | wait(1)--EndSlash | |
| 735 | end | |
| 736 | end)) | |
| 737 | StringValue5.Name = "RunAnim" | |
| 738 | StringValue5.Parent = Tool0 | |
| 739 | StringValue5.Value = "LeftSwingFast" | |
| 740 | Part6.Name = "Handle" | |
| 741 | Part6.Parent = Tool0 | |
| 742 | Part6.BrickColor = BrickColor.new("Dark stone grey")
| |
| 743 | Part6.Reflectance = 0.10000000149012 | |
| 744 | Part6.Anchored = true | |
| 745 | Part6.FormFactor = Enum.FormFactor.Custom | |
| 746 | Part6.Size = Vector3.new(1.20000005, 5, 1.20000005) | |
| 747 | Part6.CFrame = CFrame.new(4.80000019, 3.1999979, -18.4000015, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 748 | Part6.BottomSurface = Enum.SurfaceType.Smooth | |
| 749 | Part6.TopSurface = Enum.SurfaceType.Smooth | |
| 750 | Part6.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 751 | Part6.Position = Vector3.new(4.80000019, 3.1999979, -18.4000015) | |
| 752 | Part6.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 753 | SpecialMesh7.Parent = Part6 | |
| 754 | SpecialMesh7.MeshId = "http://www.roblox.com/asset/?id=" | |
| 755 | SpecialMesh7.TextureId = "http://www.roblox.com/asset/?id=" | |
| 756 | SpecialMesh7.MeshType = Enum.MeshType.FileMesh | |
| 757 | PointLight8.Parent = Part6 | |
| 758 | PointLight8.Color = Color3.new(0, 1, 0.14902) | |
| 759 | PointLight8.Enabled = false | |
| 760 | PointLight8.Range = 16 | |
| 761 | PointLight8.Color = Color3.new(0, 1, 0.14902) | |
| 762 | Script9.Name = "LightControl1" | |
| 763 | Script9.Parent = PointLight8 | |
| 764 | table.insert(cors,sandbox(Script9,function() | |
| 765 | while true do --Thumbnail | |
| 766 | script.Parent.Enabled=true | |
| 767 | wait() | |
| 768 | end | |
| 769 | ||
| 770 | ||
| 771 | end)) | |
| 772 | Script10.Name = "LightControl2" | |
| 773 | Script10.Parent = PointLight8 | |
| 774 | table.insert(cors,sandbox(Script10,function() | |
| 775 | while true do --Effect1 | |
| 776 | script.Parent.Shadows=true | |
| 777 | wait() | |
| 778 | script.Parent.Shadows=false | |
| 779 | wait() | |
| 780 | end | |
| 781 | end)) | |
| 782 | Script11.Name = "LightControl3" | |
| 783 | Script11.Parent = PointLight8 | |
| 784 | table.insert(cors,sandbox(Script11,function() | |
| 785 | while true do --Effect2 | |
| 786 | script.Parent.Range=16 | |
| 787 | wait() | |
| 788 | script.Parent.Range=14 | |
| 789 | wait() | |
| 790 | script.Parent.Range=12 | |
| 791 | wait() | |
| 792 | script.Parent.Range=10 | |
| 793 | wait() | |
| 794 | script.Parent.Range=8 | |
| 795 | wait() | |
| 796 | script.Parent.Range=10 | |
| 797 | wait() | |
| 798 | script.Parent.Range=12 | |
| 799 | wait() | |
| 800 | script.Parent.Range=14 | |
| 801 | wait() | |
| 802 | end | |
| 803 | end)) | |
| 804 | Animation12.Name = "LeftSlash" | |
| 805 | Animation12.Parent = Tool0 | |
| 806 | Animation12.AnimationId = "http://www.roblox.com/Asset?ID=74894663" | |
| 807 | Script13.Name = "AniSwitcher" | |
| 808 | Script13.Parent = Animation12 | |
| 809 | table.insert(cors,sandbox(Script13,function() | |
| 810 | while true do | |
| 811 | script.Parent.AnimationId="http://www.roblox.com/Asset?ID=74894663" | |
| 812 | wait(1)--Original | |
| 813 | script.Parent.AnimationId="http://www.roblox.com/asset/?id=73033705" | |
| 814 | wait(1)--Powerslash | |
| 815 | script.Parent.AnimationId="http://www.roblox.com/asset/?id=73033682" | |
| 816 | wait(1)--EndSlash | |
| 817 | end | |
| 818 | end)) | |
| 819 | LocalScript14.Name = "BackupWeld" | |
| 820 | LocalScript14.Parent = Tool0 | |
| 821 | table.insert(cors,sandbox(LocalScript14,function() | |
| 822 | function Weld(x,y) | |
| 823 | local W = Instance.new("Weld")
| |
| 824 | W.Part0 = x | |
| 825 | W.Part1 = y | |
| 826 | local CJ = CFrame.new(x.Position) | |
| 827 | local C0 = x.CFrame:inverse()*CJ | |
| 828 | local C1 = y.CFrame:inverse()*CJ | |
| 829 | W.C0 = C0 | |
| 830 | W.C1 = C1 | |
| 831 | W.Parent = x | |
| 832 | end | |
| 833 | ||
| 834 | function Get(A) | |
| 835 | if A.className == "Part" then | |
| 836 | Weld(script.Parent.Handle, A) | |
| 837 | A.Anchored = false | |
| 838 | else | |
| 839 | local C = A:GetChildren() | |
| 840 | for i=1, #C do | |
| 841 | Get(C[i]) | |
| 842 | end | |
| 843 | end | |
| 844 | end | |
| 845 | ||
| 846 | function Finale() | |
| 847 | Get(script.Parent) | |
| 848 | end | |
| 849 | ||
| 850 | script.Parent.Equipped:connect(Finale) | |
| 851 | script.Parent.Unequipped:connect(Finale) | |
| 852 | Finale() | |
| 853 | end)) | |
| 854 | Part15.Name = "DMGPart" | |
| 855 | Part15.Parent = Tool0 | |
| 856 | Part15.BrickColor = BrickColor.new("Really black")
| |
| 857 | Part15.Reflectance = 0.10000000149012 | |
| 858 | Part15.Transparency = 1 | |
| 859 | Part15.Rotation = Vector3.new(-60, 0, 90) | |
| 860 | Part15.Anchored = true | |
| 861 | Part15.CanCollide = false | |
| 862 | Part15.FormFactor = Enum.FormFactor.Custom | |
| 863 | Part15.Size = Vector3.new(1.20000005, 0.5, 7.70000458) | |
| 864 | Part15.CFrame = CFrame.new(4.80000019, 10.7885675, -15.288826, 0, -0.999999881, -4.47034836e-08, 0.499999821, 0, 0.866025031, -0.86602509, -5.96046448e-08, 0.499999821) | |
| 865 | Part15.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 866 | Part15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 867 | Part15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 868 | Part15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 869 | Part15.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 870 | Part15.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 871 | Part15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 872 | Part15.Position = Vector3.new(4.80000019, 10.7885675, -15.288826) | |
| 873 | Part15.Orientation = Vector3.new(-60, 0, 90) | |
| 874 | Part15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 875 | Script16.Name = "Damage Script" | |
| 876 | Script16.Parent = Part15 | |
| 877 | table.insert(cors,sandbox(Script16,function() | |
| 878 | function onTouched(hit) | |
| 879 | local human = hit.Parent:findFirstChild("Humanoid")
| |
| 880 | if (human ~= nil) then | |
| 881 | human.Health = human.Health - 50 -- Change the amount to change the damage dealt on humanoid. | |
| 882 | end | |
| 883 | end | |
| 884 | script.Parent.Touched:connect(onTouched) | |
| 885 | end)) | |
| 886 | Part17.Name = "DMGPart" | |
| 887 | Part17.Parent = Tool0 | |
| 888 | Part17.BrickColor = BrickColor.new("Really black")
| |
| 889 | Part17.Reflectance = 0.10000000149012 | |
| 890 | Part17.Transparency = 1 | |
| 891 | Part17.Rotation = Vector3.new(-60, 0, 90) | |
| 892 | Part17.Anchored = true | |
| 893 | Part17.CanCollide = false | |
| 894 | Part17.FormFactor = Enum.FormFactor.Custom | |
| 895 | Part17.Size = Vector3.new(2.50000048, 0.5, 8.70000362) | |
| 896 | Part17.CFrame = CFrame.new(4.80000019, 8.24098778, -15.1661282, 0, -0.999999881, -4.47034836e-08, 0.499999821, 0, 0.866025031, -0.86602509, -5.96046448e-08, 0.499999821) | |
| 897 | Part17.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 898 | Part17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 899 | Part17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 900 | Part17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 901 | Part17.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 902 | Part17.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 903 | Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 904 | Part17.Position = Vector3.new(4.80000019, 8.24098778, -15.1661282) | |
| 905 | Part17.Orientation = Vector3.new(-60, 0, 90) | |
| 906 | Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 907 | Script18.Name = "Damage Script" | |
| 908 | Script18.Parent = Part17 | |
| 909 | table.insert(cors,sandbox(Script18,function() | |
| 910 | function onTouched(hit) | |
| 911 | local human = hit.Parent:findFirstChild("Humanoid")
| |
| 912 | if (human ~= nil) then | |
| 913 | human.Health = human.Health - 50 -- Change the amount to change the damage dealt on humanoid. | |
| 914 | end | |
| 915 | end | |
| 916 | script.Parent.Touched:connect(onTouched) | |
| 917 | end)) | |
| 918 | Part19.Name = "DMGPart" | |
| 919 | Part19.Parent = Tool0 | |
| 920 | Part19.BrickColor = BrickColor.new("Really black")
| |
| 921 | Part19.Reflectance = 0.10000000149012 | |
| 922 | Part19.Transparency = 1 | |
| 923 | Part19.Rotation = Vector3.new(-60, 0, 90) | |
| 924 | Part19.Anchored = true | |
| 925 | Part19.CanCollide = false | |
| 926 | Part19.FormFactor = Enum.FormFactor.Custom | |
| 927 | Part19.Size = Vector3.new(2.49999976, 0.5, 3.50000501) | |
| 928 | Part19.CFrame = CFrame.new(4.80000019, 13.6926603, -12.4676924, 0, -0.999999881, -4.47034836e-08, 0.499999821, 0, 0.866025031, -0.86602509, -5.96046448e-08, 0.499999821) | |
| 929 | Part19.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 930 | Part19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 931 | Part19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 932 | Part19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 933 | Part19.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 934 | Part19.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 935 | Part19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 936 | Part19.Position = Vector3.new(4.80000019, 13.6926603, -12.4676924) | |
| 937 | Part19.Orientation = Vector3.new(-60, 0, 90) | |
| 938 | Part19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 939 | Script20.Name = "Damage Script" | |
| 940 | Script20.Parent = Part19 | |
| 941 | table.insert(cors,sandbox(Script20,function() | |
| 942 | function onTouched(hit) | |
| 943 | local human = hit.Parent:findFirstChild("Humanoid")
| |
| 944 | if (human ~= nil) then | |
| 945 | human.Health = human.Health - 50 -- Change the amount to change the damage dealt on humanoid. | |
| 946 | end | |
| 947 | end | |
| 948 | script.Parent.Touched:connect(onTouched) | |
| 949 | end)) | |
| 950 | Part21.Name = "BladeParts" | |
| 951 | Part21.Parent = Tool0 | |
| 952 | Part21.BrickColor = BrickColor.new("Grime")
| |
| 953 | Part21.Reflectance = 0.10000000149012 | |
| 954 | Part21.Rotation = Vector3.new(-105, 0, 90) | |
| 955 | Part21.Anchored = true | |
| 956 | Part21.CanCollide = false | |
| 957 | Part21.FormFactor = Enum.FormFactor.Custom | |
| 958 | Part21.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 959 | Part21.CFrame = CFrame.new(4.80000019, 9.51493645, -14.0372877, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 960 | Part21.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 961 | Part21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 962 | Part21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 963 | Part21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 964 | Part21.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 965 | Part21.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 966 | Part21.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 967 | Part21.Position = Vector3.new(4.80000019, 9.51493645, -14.0372877) | |
| 968 | Part21.Orientation = Vector3.new(-75, 180, -90) | |
| 969 | Part21.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 970 | Part22.Name = "BladeParts" | |
| 971 | Part22.Parent = Tool0 | |
| 972 | Part22.BrickColor = BrickColor.new("Camo")
| |
| 973 | Part22.Reflectance = 0.10000000149012 | |
| 974 | Part22.Rotation = Vector3.new(-105, 0, 90) | |
| 975 | Part22.Anchored = true | |
| 976 | Part22.CanCollide = false | |
| 977 | Part22.FormFactor = Enum.FormFactor.Custom | |
| 978 | Part22.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 979 | Part22.CFrame = CFrame.new(4.80000019, 10.8344164, -14.9084778, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 980 | Part22.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 981 | Part22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 982 | Part22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 983 | Part22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 984 | Part22.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 985 | Part22.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 986 | Part22.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 987 | Part22.Position = Vector3.new(4.80000019, 10.8344164, -14.9084778) | |
| 988 | Part22.Orientation = Vector3.new(-75, 180, -90) | |
| 989 | Part22.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 990 | Part23.Name = "fakeHandleParts" | |
| 991 | Part23.Parent = Tool0 | |
| 992 | Part23.BrickColor = BrickColor.new("Brown")
| |
| 993 | Part23.Reflectance = 0.10000000149012 | |
| 994 | Part23.Rotation = Vector3.new(-105, 0, 90) | |
| 995 | Part23.Anchored = true | |
| 996 | Part23.CanCollide = false | |
| 997 | Part23.FormFactor = Enum.FormFactor.Custom | |
| 998 | Part23.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 999 | Part23.CFrame = CFrame.new(4.80000019, 5.77135181, -20.2811356, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1000 | Part23.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1001 | Part23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1002 | Part23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1003 | Part23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1004 | Part23.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1005 | Part23.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1006 | Part23.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 1007 | Part23.Position = Vector3.new(4.80000019, 5.77135181, -20.2811356) | |
| 1008 | Part23.Orientation = Vector3.new(-75, 180, -90) | |
| 1009 | Part23.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 1010 | Part24.Name = "BladeParts" | |
| 1011 | Part24.Parent = Tool0 | |
| 1012 | Part24.BrickColor = BrickColor.new("Nougat")
| |
| 1013 | Part24.Reflectance = 0.10000000149012 | |
| 1014 | Part24.Rotation = Vector3.new(-105, 0, 90) | |
| 1015 | Part24.Anchored = true | |
| 1016 | Part24.CanCollide = false | |
| 1017 | Part24.FormFactor = Enum.FormFactor.Custom | |
| 1018 | Part24.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1019 | Part24.CFrame = CFrame.new(4.80000019, 14.025692, -12.6577501, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1020 | Part24.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1021 | Part24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1022 | Part24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1023 | Part24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1024 | Part24.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1025 | Part24.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1026 | Part24.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 1027 | Part24.Position = Vector3.new(4.80000019, 14.025692, -12.6577501) | |
| 1028 | Part24.Orientation = Vector3.new(-75, 180, -90) | |
| 1029 | Part24.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 1030 | Part25.Name = "BladeParts" | |
| 1031 | Part25.Parent = Tool0 | |
| 1032 | Part25.BrickColor = BrickColor.new("Grime")
| |
| 1033 | Part25.Reflectance = 0.10000000149012 | |
| 1034 | Part25.Rotation = Vector3.new(-105, 0, 90) | |
| 1035 | Part25.Anchored = true | |
| 1036 | Part25.CanCollide = false | |
| 1037 | Part25.FormFactor = Enum.FormFactor.Custom | |
| 1038 | Part25.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1039 | Part25.CFrame = CFrame.new(4.80000019, 15.6039925, -12.5630178, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1040 | Part25.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1041 | Part25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1042 | Part25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1043 | Part25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1044 | Part25.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1045 | Part25.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1046 | Part25.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1047 | Part25.Position = Vector3.new(4.80000019, 15.6039925, -12.5630178) | |
| 1048 | Part25.Orientation = Vector3.new(-75, 180, -90) | |
| 1049 | Part25.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1050 | Part26.Name = "BladeParts" | |
| 1051 | Part26.Parent = Tool0 | |
| 1052 | Part26.BrickColor = BrickColor.new("Grime")
| |
| 1053 | Part26.Reflectance = 0.10000000149012 | |
| 1054 | Part26.Rotation = Vector3.new(-105, 0, 90) | |
| 1055 | Part26.Anchored = true | |
| 1056 | Part26.CanCollide = false | |
| 1057 | Part26.FormFactor = Enum.FormFactor.Custom | |
| 1058 | Part26.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1059 | Part26.CFrame = CFrame.new(4.80000019, 15.4745779, -13.0459776, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1060 | Part26.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1061 | Part26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1062 | Part26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1063 | Part26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1064 | Part26.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1065 | Part26.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1066 | Part26.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1067 | Part26.Position = Vector3.new(4.80000019, 15.4745779, -13.0459776) | |
| 1068 | Part26.Orientation = Vector3.new(-75, 180, -90) | |
| 1069 | Part26.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1070 | Part27.Name = "BladeParts" | |
| 1071 | Part27.Parent = Tool0 | |
| 1072 | Part27.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1073 | Part27.Reflectance = 0.10000000149012 | |
| 1074 | Part27.Rotation = Vector3.new(-105, 0, 90) | |
| 1075 | Part27.Anchored = true | |
| 1076 | Part27.CanCollide = false | |
| 1077 | Part27.FormFactor = Enum.FormFactor.Custom | |
| 1078 | Part27.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1079 | Part27.CFrame = CFrame.new(4.80000019, 14.9916162, -12.916564, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1080 | Part27.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1081 | Part27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1082 | Part27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1083 | Part27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1084 | Part27.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1085 | Part27.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1086 | Part27.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1087 | Part27.Position = Vector3.new(4.80000019, 14.9916162, -12.916564) | |
| 1088 | Part27.Orientation = Vector3.new(-75, 180, -90) | |
| 1089 | Part27.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1090 | Part28.Name = "BladeParts" | |
| 1091 | Part28.Parent = Tool0 | |
| 1092 | Part28.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1093 | Part28.Reflectance = 0.10000000149012 | |
| 1094 | Part28.Rotation = Vector3.new(-105, 0, 90) | |
| 1095 | Part28.Anchored = true | |
| 1096 | Part28.CanCollide = false | |
| 1097 | Part28.FormFactor = Enum.FormFactor.Custom | |
| 1098 | Part28.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1099 | Part28.CFrame = CFrame.new(4.80000019, 13.4133177, -13.0113058, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1100 | Part28.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1101 | Part28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1102 | Part28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1103 | Part28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1104 | Part28.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1105 | Part28.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1106 | Part28.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1107 | Part28.Position = Vector3.new(4.80000019, 13.4133177, -13.0113058) | |
| 1108 | Part28.Orientation = Vector3.new(-75, 180, -90) | |
| 1109 | Part28.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1110 | Part29.Name = "BladeParts" | |
| 1111 | Part29.Parent = Tool0 | |
| 1112 | Part29.BrickColor = BrickColor.new("Earth green")
| |
| 1113 | Part29.Reflectance = 0.10000000149012 | |
| 1114 | Part29.Rotation = Vector3.new(-105, 0, 90) | |
| 1115 | Part29.Anchored = true | |
| 1116 | Part29.CanCollide = false | |
| 1117 | Part29.FormFactor = Enum.FormFactor.Custom | |
| 1118 | Part29.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1119 | Part29.CFrame = CFrame.new(4.80000019, 13.2839098, -13.4942684, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1120 | Part29.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1121 | Part29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1122 | Part29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1123 | Part29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1124 | Part29.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1125 | Part29.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1126 | Part29.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1127 | Part29.Position = Vector3.new(4.80000019, 13.2839098, -13.4942684) | |
| 1128 | Part29.Orientation = Vector3.new(-75, 180, -90) | |
| 1129 | Part29.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1130 | Part30.Name = "BladeParts" | |
| 1131 | Part30.Parent = Tool0 | |
| 1132 | Part30.BrickColor = BrickColor.new("Dark orange")
| |
| 1133 | Part30.Reflectance = 0.10000000149012 | |
| 1134 | Part30.Rotation = Vector3.new(-105, 0, 90) | |
| 1135 | Part30.Anchored = true | |
| 1136 | Part30.CanCollide = false | |
| 1137 | Part30.FormFactor = Enum.FormFactor.Custom | |
| 1138 | Part30.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1139 | Part30.CFrame = CFrame.new(4.80000019, 12.0938358, -12.14011, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1140 | Part30.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1141 | Part30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1142 | Part30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1143 | Part30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1144 | Part30.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1145 | Part30.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1146 | Part30.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1147 | Part30.Position = Vector3.new(4.80000019, 12.0938358, -12.14011) | |
| 1148 | Part30.Orientation = Vector3.new(-75, 180, -90) | |
| 1149 | Part30.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1150 | Part31.Name = "BladeParts" | |
| 1151 | Part31.Parent = Tool0 | |
| 1152 | Part31.BrickColor = BrickColor.new("Grime")
| |
| 1153 | Part31.Reflectance = 0.10000000149012 | |
| 1154 | Part31.Rotation = Vector3.new(-105, 0, 90) | |
| 1155 | Part31.Anchored = true | |
| 1156 | Part31.CanCollide = false | |
| 1157 | Part31.FormFactor = Enum.FormFactor.Custom | |
| 1158 | Part31.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1159 | Part31.CFrame = CFrame.new(4.80000019, 14.155098, -12.1747885, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1160 | Part31.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1161 | Part31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1162 | Part31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1163 | Part31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1164 | Part31.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1165 | Part31.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1166 | Part31.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1167 | Part31.Position = Vector3.new(4.80000019, 14.155098, -12.1747885) | |
| 1168 | Part31.Orientation = Vector3.new(-75, 180, -90) | |
| 1169 | Part31.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1170 | Part32.Name = "BladeParts" | |
| 1171 | Part32.Parent = Tool0 | |
| 1172 | Part32.BrickColor = BrickColor.new("Brick yellow")
| |
| 1173 | Part32.Reflectance = 0.10000000149012 | |
| 1174 | Part32.Rotation = Vector3.new(-105, 0, 90) | |
| 1175 | Part32.Anchored = true | |
| 1176 | Part32.CanCollide = false | |
| 1177 | Part32.FormFactor = Enum.FormFactor.Custom | |
| 1178 | Part32.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1179 | Part32.CFrame = CFrame.new(4.80000019, 12.4473877, -12.7524824, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1180 | Part32.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1181 | Part32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1182 | Part32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1183 | Part32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1184 | Part32.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1185 | Part32.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1186 | Part32.Color = Color3.new(0.843137, 0.772549, 0.603922) | |
| 1187 | Part32.Position = Vector3.new(4.80000019, 12.4473877, -12.7524824) | |
| 1188 | Part32.Orientation = Vector3.new(-75, 180, -90) | |
| 1189 | Part32.Color = Color3.new(0.843137, 0.772549, 0.603922) | |
| 1190 | Part33.Name = "BladeParts" | |
| 1191 | Part33.Parent = Tool0 | |
| 1192 | Part33.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1193 | Part33.Reflectance = 0.10000000149012 | |
| 1194 | Part33.Rotation = Vector3.new(-105, 0, 90) | |
| 1195 | Part33.Anchored = true | |
| 1196 | Part33.CanCollide = false | |
| 1197 | Part33.FormFactor = Enum.FormFactor.Custom | |
| 1198 | Part33.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1199 | Part33.CFrame = CFrame.new(4.80000019, 13.8962784, -13.140708, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1200 | Part33.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1201 | Part33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1202 | Part33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1203 | Part33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1204 | Part33.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1205 | Part33.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1206 | Part33.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1207 | Part33.Position = Vector3.new(4.80000019, 13.8962784, -13.140708) | |
| 1208 | Part33.Orientation = Vector3.new(-75, 180, -90) | |
| 1209 | Part33.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1210 | Part34.Name = "BladeParts" | |
| 1211 | Part34.Parent = Tool0 | |
| 1212 | Part34.BrickColor = BrickColor.new("Brick yellow")
| |
| 1213 | Part34.Reflectance = 0.10000000149012 | |
| 1214 | Part34.Rotation = Vector3.new(-105, 0, 90) | |
| 1215 | Part34.Anchored = true | |
| 1216 | Part34.CanCollide = false | |
| 1217 | Part34.FormFactor = Enum.FormFactor.Custom | |
| 1218 | Part34.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1219 | Part34.CFrame = CFrame.new(4.80000019, 13.5427284, -12.5283384, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1220 | Part34.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1221 | Part34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1222 | Part34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1223 | Part34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1224 | Part34.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1225 | Part34.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1226 | Part34.Color = Color3.new(0.843137, 0.772549, 0.603922) | |
| 1227 | Part34.Position = Vector3.new(4.80000019, 13.5427284, -12.5283384) | |
| 1228 | Part34.Orientation = Vector3.new(-75, 180, -90) | |
| 1229 | Part34.Color = Color3.new(0.843137, 0.772549, 0.603922) | |
| 1230 | Part35.Name = "BladeParts" | |
| 1231 | Part35.Parent = Tool0 | |
| 1232 | Part35.BrickColor = BrickColor.new("Bright green")
| |
| 1233 | Part35.Reflectance = 0.10000000149012 | |
| 1234 | Part35.Rotation = Vector3.new(-105, 0, 90) | |
| 1235 | Part35.Anchored = true | |
| 1236 | Part35.CanCollide = false | |
| 1237 | Part35.FormFactor = Enum.FormFactor.Custom | |
| 1238 | Part35.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1239 | Part35.CFrame = CFrame.new(4.80000019, 14.3792439, -13.2701178, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1240 | Part35.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1241 | Part35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1242 | Part35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1243 | Part35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1244 | Part35.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1245 | Part35.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1246 | Part35.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 1247 | Part35.Position = Vector3.new(4.80000019, 14.3792439, -13.2701178) | |
| 1248 | Part35.Orientation = Vector3.new(-75, 180, -90) | |
| 1249 | Part35.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 1250 | Part36.Name = "BladeParts" | |
| 1251 | Part36.Parent = Tool0 | |
| 1252 | Part36.BrickColor = BrickColor.new("Bright green")
| |
| 1253 | Part36.Reflectance = 0.10000000149012 | |
| 1254 | Part36.Rotation = Vector3.new(-105, 0, 90) | |
| 1255 | Part36.Anchored = true | |
| 1256 | Part36.CanCollide = false | |
| 1257 | Part36.FormFactor = Enum.FormFactor.Custom | |
| 1258 | Part36.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1259 | Part36.CFrame = CFrame.new(4.80000019, 12.8009443, -13.3648558, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1260 | Part36.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1261 | Part36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1262 | Part36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1263 | Part36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1264 | Part36.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1265 | Part36.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1266 | Part36.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 1267 | Part36.Position = Vector3.new(4.80000019, 12.8009443, -13.3648558) | |
| 1268 | Part36.Orientation = Vector3.new(-75, 180, -90) | |
| 1269 | Part36.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 1270 | Part37.Name = "BladeParts" | |
| 1271 | Part37.Parent = Tool0 | |
| 1272 | Part37.BrickColor = BrickColor.new("Dark orange")
| |
| 1273 | Part37.Reflectance = 0.10000000149012 | |
| 1274 | Part37.Rotation = Vector3.new(-105, 0, 90) | |
| 1275 | Part37.Anchored = true | |
| 1276 | Part37.CanCollide = false | |
| 1277 | Part37.FormFactor = Enum.FormFactor.Custom | |
| 1278 | Part37.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1279 | Part37.CFrame = CFrame.new(4.80000019, 12.5768003, -12.2695217, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1280 | Part37.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1281 | Part37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1282 | Part37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1283 | Part37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1284 | Part37.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1285 | Part37.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1286 | Part37.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1287 | Part37.Position = Vector3.new(4.80000019, 12.5768003, -12.2695217) | |
| 1288 | Part37.Orientation = Vector3.new(-75, 180, -90) | |
| 1289 | Part37.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1290 | Part38.Name = "BladeParts" | |
| 1291 | Part38.Parent = Tool0 | |
| 1292 | Part38.BrickColor = BrickColor.new("Deep orange")
| |
| 1293 | Part38.Reflectance = 0.10000000149012 | |
| 1294 | Part38.Rotation = Vector3.new(-105, 0, 90) | |
| 1295 | Part38.Anchored = true | |
| 1296 | Part38.CanCollide = false | |
| 1297 | Part38.FormFactor = Enum.FormFactor.Custom | |
| 1298 | Part38.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1299 | Part38.CFrame = CFrame.new(4.80000019, 14.5086555, -12.7871618, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1300 | Part38.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1301 | Part38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1302 | Part38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1303 | Part38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1304 | Part38.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1305 | Part38.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1306 | Part38.Color = Color3.new(1, 0.690196, 0) | |
| 1307 | Part38.Position = Vector3.new(4.80000019, 14.5086555, -12.7871618) | |
| 1308 | Part38.Orientation = Vector3.new(-75, 180, -90) | |
| 1309 | Part38.Color = Color3.new(1, 0.690196, 0) | |
| 1310 | Part39.Name = "BladeParts" | |
| 1311 | Part39.Parent = Tool0 | |
| 1312 | Part39.BrickColor = BrickColor.new("Dark orange")
| |
| 1313 | Part39.Reflectance = 0.10000000149012 | |
| 1314 | Part39.Rotation = Vector3.new(-105, 0, 90) | |
| 1315 | Part39.Anchored = true | |
| 1316 | Part39.CanCollide = false | |
| 1317 | Part39.FormFactor = Enum.FormFactor.Custom | |
| 1318 | Part39.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1319 | Part39.CFrame = CFrame.new(4.80000019, 13.6721382, -12.0453777, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1320 | Part39.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1321 | Part39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1322 | Part39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1323 | Part39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1324 | Part39.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1325 | Part39.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1326 | Part39.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1327 | Part39.Position = Vector3.new(4.80000019, 13.6721382, -12.0453777) | |
| 1328 | Part39.Orientation = Vector3.new(-75, 180, -90) | |
| 1329 | Part39.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1330 | Part40.Name = "BladeParts" | |
| 1331 | Part40.Parent = Tool0 | |
| 1332 | Part40.BrickColor = BrickColor.new("Grime")
| |
| 1333 | Part40.Reflectance = 0.10000000149012 | |
| 1334 | Part40.Rotation = Vector3.new(-105, 0, 90) | |
| 1335 | Part40.Anchored = true | |
| 1336 | Part40.CanCollide = false | |
| 1337 | Part40.FormFactor = Enum.FormFactor.Custom | |
| 1338 | Part40.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1339 | Part40.CFrame = CFrame.new(4.80000019, 14.6380644, -12.3041983, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1340 | Part40.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1341 | Part40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1342 | Part40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1343 | Part40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1344 | Part40.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1345 | Part40.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1346 | Part40.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1347 | Part40.Position = Vector3.new(4.80000019, 14.6380644, -12.3041983) | |
| 1348 | Part40.Orientation = Vector3.new(-75, 180, -90) | |
| 1349 | Part40.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1350 | Part41.Name = "BladeParts" | |
| 1351 | Part41.Parent = Tool0 | |
| 1352 | Part41.BrickColor = BrickColor.new("Nougat")
| |
| 1353 | Part41.Reflectance = 0.10000000149012 | |
| 1354 | Part41.Rotation = Vector3.new(-105, 0, 90) | |
| 1355 | Part41.Anchored = true | |
| 1356 | Part41.CanCollide = false | |
| 1357 | Part41.FormFactor = Enum.FormFactor.Custom | |
| 1358 | Part41.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1359 | Part41.CFrame = CFrame.new(4.80000019, 11.9644279, -12.6230736, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1360 | Part41.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1361 | Part41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1362 | Part41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1363 | Part41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1364 | Part41.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1365 | Part41.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1366 | Part41.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 1367 | Part41.Position = Vector3.new(4.80000019, 11.9644279, -12.6230736) | |
| 1368 | Part41.Orientation = Vector3.new(-75, 180, -90) | |
| 1369 | Part41.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 1370 | Part42.Name = "BladeParts" | |
| 1371 | Part42.Parent = Tool0 | |
| 1372 | Part42.BrickColor = BrickColor.new("Deep orange")
| |
| 1373 | Part42.Reflectance = 0.10000000149012 | |
| 1374 | Part42.Rotation = Vector3.new(-105, 0, 90) | |
| 1375 | Part42.Anchored = true | |
| 1376 | Part42.CanCollide = false | |
| 1377 | Part42.FormFactor = Enum.FormFactor.Custom | |
| 1378 | Part42.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1379 | Part42.CFrame = CFrame.new(4.80000019, 12.9303541, -12.8818922, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1380 | Part42.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1381 | Part42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1382 | Part42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1383 | Part42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1384 | Part42.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1385 | Part42.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1386 | Part42.Color = Color3.new(1, 0.690196, 0) | |
| 1387 | Part42.Position = Vector3.new(4.80000019, 12.9303541, -12.8818922) | |
| 1388 | Part42.Orientation = Vector3.new(-75, 180, -90) | |
| 1389 | Part42.Color = Color3.new(1, 0.690196, 0) | |
| 1390 | Part43.Name = "BladeParts" | |
| 1391 | Part43.Parent = Tool0 | |
| 1392 | Part43.BrickColor = BrickColor.new("Cool yellow")
| |
| 1393 | Part43.Reflectance = 0.10000000149012 | |
| 1394 | Part43.Rotation = Vector3.new(-105, 0, 90) | |
| 1395 | Part43.Anchored = true | |
| 1396 | Part43.CanCollide = false | |
| 1397 | Part43.FormFactor = Enum.FormFactor.Custom | |
| 1398 | Part43.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1399 | Part43.CFrame = CFrame.new(4.80000019, 13.0597658, -12.3989325, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1400 | Part43.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1401 | Part43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1402 | Part43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1403 | Part43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1404 | Part43.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1405 | Part43.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1406 | Part43.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 1407 | Part43.Position = Vector3.new(4.80000019, 13.0597658, -12.3989325) | |
| 1408 | Part43.Orientation = Vector3.new(-75, 180, -90) | |
| 1409 | Part43.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 1410 | Part44.Name = "BladeParts" | |
| 1411 | Part44.Parent = Tool0 | |
| 1412 | Part44.BrickColor = BrickColor.new("Dark orange")
| |
| 1413 | Part44.Reflectance = 0.10000000149012 | |
| 1414 | Part44.Rotation = Vector3.new(-105, 0, 90) | |
| 1415 | Part44.Anchored = true | |
| 1416 | Part44.CanCollide = false | |
| 1417 | Part44.FormFactor = Enum.FormFactor.Custom | |
| 1418 | Part44.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1419 | Part44.CFrame = CFrame.new(4.80000019, 10.9985018, -12.364254, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1420 | Part44.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1421 | Part44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1422 | Part44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1423 | Part44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1424 | Part44.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1425 | Part44.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1426 | Part44.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1427 | Part44.Position = Vector3.new(4.80000019, 10.9985018, -12.364254) | |
| 1428 | Part44.Orientation = Vector3.new(-75, 180, -90) | |
| 1429 | Part44.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1430 | Part45.Name = "BladeParts" | |
| 1431 | Part45.Parent = Tool0 | |
| 1432 | Part45.BrickColor = BrickColor.new("Dark orange")
| |
| 1433 | Part45.Reflectance = 0.10000000149012 | |
| 1434 | Part45.Rotation = Vector3.new(-105, 0, 90) | |
| 1435 | Part45.Anchored = true | |
| 1436 | Part45.CanCollide = false | |
| 1437 | Part45.FormFactor = Enum.FormFactor.Custom | |
| 1438 | Part45.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1439 | Part45.CFrame = CFrame.new(4.80000019, 13.1891718, -11.9159679, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1440 | Part45.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1441 | Part45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1442 | Part45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1443 | Part45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1444 | Part45.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1445 | Part45.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1446 | Part45.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1447 | Part45.Position = Vector3.new(4.80000019, 13.1891718, -11.9159679) | |
| 1448 | Part45.Orientation = Vector3.new(-75, 180, -90) | |
| 1449 | Part45.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 1450 | Part46.Name = "BladeParts" | |
| 1451 | Part46.Parent = Tool0 | |
| 1452 | Part46.BrickColor = BrickColor.new("Grime")
| |
| 1453 | Part46.Reflectance = 0.10000000149012 | |
| 1454 | Part46.Rotation = Vector3.new(-105, 0, 90) | |
| 1455 | Part46.Anchored = true | |
| 1456 | Part46.CanCollide = false | |
| 1457 | Part46.FormFactor = Enum.FormFactor.Custom | |
| 1458 | Part46.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1459 | Part46.CFrame = CFrame.new(4.80000019, 15.1210222, -12.4336004, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1460 | Part46.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1461 | Part46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1462 | Part46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1463 | Part46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1464 | Part46.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1465 | Part46.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1466 | Part46.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1467 | Part46.Position = Vector3.new(4.80000019, 15.1210222, -12.4336004) | |
| 1468 | Part46.Orientation = Vector3.new(-75, 180, -90) | |
| 1469 | Part46.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1470 | Part47.Name = "BladeParts" | |
| 1471 | Part47.Parent = Tool0 | |
| 1472 | Part47.BrickColor = BrickColor.new("Deep blue")
| |
| 1473 | Part47.Reflectance = 0.10000000149012 | |
| 1474 | Part47.Rotation = Vector3.new(-105, 0, 90) | |
| 1475 | Part47.Anchored = true | |
| 1476 | Part47.CanCollide = false | |
| 1477 | Part47.FormFactor = Enum.FormFactor.Custom | |
| 1478 | Part47.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1479 | Part47.CFrame = CFrame.new(4.80000019, 4.96951008, -17.4780884, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1480 | Part47.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1481 | Part47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1482 | Part47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1483 | Part47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1484 | Part47.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1485 | Part47.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1486 | Part47.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 1487 | Part47.Position = Vector3.new(4.80000019, 4.96951008, -17.4780884) | |
| 1488 | Part47.Orientation = Vector3.new(-75, 180, -90) | |
| 1489 | Part47.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 1490 | Part48.Name = "BladeParts" | |
| 1491 | Part48.Parent = Tool0 | |
| 1492 | Part48.BrickColor = BrickColor.new("Bright bluish green")
| |
| 1493 | Part48.Reflectance = 0.10000000149012 | |
| 1494 | Part48.Rotation = Vector3.new(-105, 0, 90) | |
| 1495 | Part48.Anchored = true | |
| 1496 | Part48.CanCollide = false | |
| 1497 | Part48.FormFactor = Enum.FormFactor.Custom | |
| 1498 | Part48.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1499 | Part48.CFrame = CFrame.new(4.80000019, 13.7668676, -13.6236744, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1500 | Part48.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1501 | Part48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1502 | Part48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1503 | Part48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1504 | Part48.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1505 | Part48.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1506 | Part48.Color = Color3.new(0, 0.560784, 0.611765) | |
| 1507 | Part48.Position = Vector3.new(4.80000019, 13.7668676, -13.6236744) | |
| 1508 | Part48.Orientation = Vector3.new(-75, 180, -90) | |
| 1509 | Part48.Color = Color3.new(0, 0.560784, 0.611765) | |
| 1510 | Part49.Name = "BladeParts" | |
| 1511 | Part49.Parent = Tool0 | |
| 1512 | Part49.BrickColor = BrickColor.new("Bright green")
| |
| 1513 | Part49.Reflectance = 0.10000000149012 | |
| 1514 | Part49.Rotation = Vector3.new(-105, 0, 90) | |
| 1515 | Part49.Anchored = true | |
| 1516 | Part49.CanCollide = false | |
| 1517 | Part49.FormFactor = Enum.FormFactor.Custom | |
| 1518 | Part49.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1519 | Part49.CFrame = CFrame.new(4.80000019, 6.45307493, -15.8050537, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1520 | Part49.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1521 | Part49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1522 | Part49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1523 | Part49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1524 | Part49.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1525 | Part49.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1526 | Part49.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 1527 | Part49.Position = Vector3.new(4.80000019, 6.45307493, -15.8050537) | |
| 1528 | Part49.Orientation = Vector3.new(-75, 180, -90) | |
| 1529 | Part49.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 1530 | Part50.Name = "BladeParts" | |
| 1531 | Part50.Parent = Tool0 | |
| 1532 | Part50.BrickColor = BrickColor.new("Earth green")
| |
| 1533 | Part50.Reflectance = 0.10000000149012 | |
| 1534 | Part50.Rotation = Vector3.new(-105, 0, 90) | |
| 1535 | Part50.Anchored = true | |
| 1536 | Part50.CanCollide = false | |
| 1537 | Part50.FormFactor = Enum.FormFactor.Custom | |
| 1538 | Part50.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1539 | Part50.CFrame = CFrame.new(4.80000019, 6.32366514, -16.2880154, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1540 | Part50.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1541 | Part50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1542 | Part50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1543 | Part50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1544 | Part50.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1545 | Part50.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1546 | Part50.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1547 | Part50.Position = Vector3.new(4.80000019, 6.32366514, -16.2880154) | |
| 1548 | Part50.Orientation = Vector3.new(-75, 180, -90) | |
| 1549 | Part50.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1550 | Part51.Name = "BladeParts" | |
| 1551 | Part51.Parent = Tool0 | |
| 1552 | Part51.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1553 | Part51.Reflectance = 0.10000000149012 | |
| 1554 | Part51.Rotation = Vector3.new(-105, 0, 90) | |
| 1555 | Part51.Anchored = true | |
| 1556 | Part51.CanCollide = false | |
| 1557 | Part51.FormFactor = Enum.FormFactor.Custom | |
| 1558 | Part51.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1559 | Part51.CFrame = CFrame.new(4.80000019, 7.19485807, -14.9685383, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1560 | Part51.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1561 | Part51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1562 | Part51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1563 | Part51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1564 | Part51.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1565 | Part51.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1566 | Part51.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1567 | Part51.Position = Vector3.new(4.80000019, 7.19485807, -14.9685383) | |
| 1568 | Part51.Orientation = Vector3.new(-75, 180, -90) | |
| 1569 | Part51.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1570 | Part52.Name = "BladeParts" | |
| 1571 | Part52.Parent = Tool0 | |
| 1572 | Part52.BrickColor = BrickColor.new("Earth green")
| |
| 1573 | Part52.Reflectance = 0.10000000149012 | |
| 1574 | Part52.Rotation = Vector3.new(-105, 0, 90) | |
| 1575 | Part52.Anchored = true | |
| 1576 | Part52.CanCollide = false | |
| 1577 | Part52.FormFactor = Enum.FormFactor.Custom | |
| 1578 | Part52.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1579 | Part52.CFrame = CFrame.new(4.80000019, 5.8407011, -16.1586056, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1580 | Part52.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1581 | Part52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1582 | Part52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1583 | Part52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1584 | Part52.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1585 | Part52.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1586 | Part52.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1587 | Part52.Position = Vector3.new(4.80000019, 5.8407011, -16.1586056) | |
| 1588 | Part52.Orientation = Vector3.new(-75, 180, -90) | |
| 1589 | Part52.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1590 | Part53.Name = "BladeParts" | |
| 1591 | Part53.Parent = Tool0 | |
| 1592 | Part53.BrickColor = BrickColor.new("Earth green")
| |
| 1593 | Part53.Reflectance = 0.10000000149012 | |
| 1594 | Part53.Rotation = Vector3.new(-105, 0, 90) | |
| 1595 | Part53.Anchored = true | |
| 1596 | Part53.CanCollide = false | |
| 1597 | Part53.FormFactor = Enum.FormFactor.Custom | |
| 1598 | Part53.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1599 | Part53.CFrame = CFrame.new(4.80000019, 5.26300716, -14.450902, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1600 | Part53.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1601 | Part53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1602 | Part53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1603 | Part53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1604 | Part53.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1605 | Part53.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1606 | Part53.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1607 | Part53.Position = Vector3.new(4.80000019, 5.26300716, -14.450902) | |
| 1608 | Part53.Orientation = Vector3.new(-75, 180, -90) | |
| 1609 | Part53.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1610 | Part54.Name = "BladeParts" | |
| 1611 | Part54.Parent = Tool0 | |
| 1612 | Part54.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1613 | Part54.Reflectance = 0.10000000149012 | |
| 1614 | Part54.Rotation = Vector3.new(-105, 0, 90) | |
| 1615 | Part54.Anchored = true | |
| 1616 | Part54.CanCollide = false | |
| 1617 | Part54.FormFactor = Enum.FormFactor.Custom | |
| 1618 | Part54.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1619 | Part54.CFrame = CFrame.new(4.80000019, 9.03197384, -13.9078779, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1620 | Part54.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1621 | Part54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1622 | Part54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1623 | Part54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1624 | Part54.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1625 | Part54.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1626 | Part54.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1627 | Part54.Position = Vector3.new(4.80000019, 9.03197384, -13.9078779) | |
| 1628 | Part54.Orientation = Vector3.new(-75, 180, -90) | |
| 1629 | Part54.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1630 | Part55.Name = "BladeParts" | |
| 1631 | Part55.Parent = Tool0 | |
| 1632 | Part55.BrickColor = BrickColor.new("Earth green")
| |
| 1633 | Part55.Reflectance = 0.10000000149012 | |
| 1634 | Part55.Rotation = Vector3.new(-105, 0, 90) | |
| 1635 | Part55.Anchored = true | |
| 1636 | Part55.CanCollide = false | |
| 1637 | Part55.FormFactor = Enum.FormFactor.Custom | |
| 1638 | Part55.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1639 | Part55.CFrame = CFrame.new(4.80000019, 6.09951878, -15.1926804, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1640 | Part55.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1641 | Part55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1642 | Part55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1643 | Part55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1644 | Part55.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1645 | Part55.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1646 | Part55.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1647 | Part55.Position = Vector3.new(4.80000019, 6.09951878, -15.1926804) | |
| 1648 | Part55.Orientation = Vector3.new(-75, 180, -90) | |
| 1649 | Part55.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1650 | Part56.Name = "BladeParts" | |
| 1651 | Part56.Parent = Tool0 | |
| 1652 | Part56.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1653 | Part56.Reflectance = 0.10000000149012 | |
| 1654 | Part56.Rotation = Vector3.new(-105, 0, 90) | |
| 1655 | Part56.Anchored = true | |
| 1656 | Part56.CanCollide = false | |
| 1657 | Part56.FormFactor = Enum.FormFactor.Custom | |
| 1658 | Part56.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1659 | Part56.CFrame = CFrame.new(4.80000019, 9.64434624, -13.5543184, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1660 | Part56.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1661 | Part56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1662 | Part56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1663 | Part56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1664 | Part56.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1665 | Part56.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1666 | Part56.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1667 | Part56.Position = Vector3.new(4.80000019, 9.64434624, -13.5543184) | |
| 1668 | Part56.Orientation = Vector3.new(-75, 180, -90) | |
| 1669 | Part56.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1670 | Part57.Name = "BladeParts" | |
| 1671 | Part57.Parent = Tool0 | |
| 1672 | Part57.BrickColor = BrickColor.new("Earth green")
| |
| 1673 | Part57.Reflectance = 0.10000000149012 | |
| 1674 | Part57.Rotation = Vector3.new(-105, 0, 90) | |
| 1675 | Part57.Anchored = true | |
| 1676 | Part57.CanCollide = false | |
| 1677 | Part57.FormFactor = Enum.FormFactor.Custom | |
| 1678 | Part57.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1679 | Part57.CFrame = CFrame.new(4.80000019, 5.48715019, -15.5462341, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1680 | Part57.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1681 | Part57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1682 | Part57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1683 | Part57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1684 | Part57.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1685 | Part57.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1686 | Part57.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1687 | Part57.Position = Vector3.new(4.80000019, 5.48715019, -15.5462341) | |
| 1688 | Part57.Orientation = Vector3.new(-75, 180, -90) | |
| 1689 | Part57.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1690 | Part58.Name = "BladeParts" | |
| 1691 | Part58.Parent = Tool0 | |
| 1692 | Part58.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1693 | Part58.Reflectance = 0.10000000149012 | |
| 1694 | Part58.Rotation = Vector3.new(-105, 0, 90) | |
| 1695 | Part58.Anchored = true | |
| 1696 | Part58.CanCollide = false | |
| 1697 | Part58.FormFactor = Enum.FormFactor.Custom | |
| 1698 | Part58.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1699 | Part58.CFrame = CFrame.new(4.80000019, 8.41960239, -14.2614279, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1700 | Part58.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1701 | Part58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1702 | Part58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1703 | Part58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1704 | Part58.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1705 | Part58.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1706 | Part58.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1707 | Part58.Position = Vector3.new(4.80000019, 8.41960239, -14.2614279) | |
| 1708 | Part58.Orientation = Vector3.new(-75, 180, -90) | |
| 1709 | Part58.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1710 | Part59.Name = "BladeParts" | |
| 1711 | Part59.Parent = Tool0 | |
| 1712 | Part59.BrickColor = BrickColor.new("Deep orange")
| |
| 1713 | Part59.Reflectance = 0.10000000149012 | |
| 1714 | Part59.Rotation = Vector3.new(-105, 0, 90) | |
| 1715 | Part59.Anchored = true | |
| 1716 | Part59.CanCollide = false | |
| 1717 | Part59.FormFactor = Enum.FormFactor.Custom | |
| 1718 | Part59.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1719 | Part59.CFrame = CFrame.new(4.80000019, 10.2567177, -13.2007685, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1720 | Part59.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1721 | Part59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1722 | Part59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1723 | Part59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1724 | Part59.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1725 | Part59.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1726 | Part59.Color = Color3.new(1, 0.690196, 0) | |
| 1727 | Part59.Position = Vector3.new(4.80000019, 10.2567177, -13.2007685) | |
| 1728 | Part59.Orientation = Vector3.new(-75, 180, -90) | |
| 1729 | Part59.Color = Color3.new(1, 0.690196, 0) | |
| 1730 | Part60.Name = "BladeParts" | |
| 1731 | Part60.Parent = Tool0 | |
| 1732 | Part60.BrickColor = BrickColor.new("Earth green")
| |
| 1733 | Part60.Reflectance = 0.10000000149012 | |
| 1734 | Part60.Rotation = Vector3.new(-105, 0, 90) | |
| 1735 | Part60.Anchored = true | |
| 1736 | Part60.CanCollide = false | |
| 1737 | Part60.FormFactor = Enum.FormFactor.Custom | |
| 1738 | Part60.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1739 | Part60.CFrame = CFrame.new(4.80000019, 5.13359404, -14.9338636, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1740 | Part60.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1741 | Part60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1742 | Part60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1743 | Part60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1744 | Part60.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1745 | Part60.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1746 | Part60.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1747 | Part60.Position = Vector3.new(4.80000019, 5.13359404, -14.9338636) | |
| 1748 | Part60.Orientation = Vector3.new(-75, 180, -90) | |
| 1749 | Part60.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1750 | Part61.Name = "BladeParts" | |
| 1751 | Part61.Parent = Tool0 | |
| 1752 | Part61.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1753 | Part61.Reflectance = 0.10000000149012 | |
| 1754 | Part61.Rotation = Vector3.new(-105, 0, 90) | |
| 1755 | Part61.Anchored = true | |
| 1756 | Part61.CanCollide = false | |
| 1757 | Part61.FormFactor = Enum.FormFactor.Custom | |
| 1758 | Part61.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1759 | Part61.CFrame = CFrame.new(4.80000019, 5.35774088, -16.0291977, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1760 | Part61.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1761 | Part61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1762 | Part61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1763 | Part61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1764 | Part61.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1765 | Part61.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1766 | Part61.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1767 | Part61.Position = Vector3.new(4.80000019, 5.35774088, -16.0291977) | |
| 1768 | Part61.Orientation = Vector3.new(-75, 180, -90) | |
| 1769 | Part61.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1770 | Part62.Name = "BladeParts" | |
| 1771 | Part62.Parent = Tool0 | |
| 1772 | Part62.BrickColor = BrickColor.new("Earth green")
| |
| 1773 | Part62.Reflectance = 0.10000000149012 | |
| 1774 | Part62.Rotation = Vector3.new(-105, 0, 90) | |
| 1775 | Part62.Anchored = true | |
| 1776 | Part62.CanCollide = false | |
| 1777 | Part62.FormFactor = Enum.FormFactor.Custom | |
| 1778 | Part62.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1779 | Part62.CFrame = CFrame.new(4.80000019, 6.93603897, -15.9344645, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1780 | Part62.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1781 | Part62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1782 | Part62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1783 | Part62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1784 | Part62.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1785 | Part62.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1786 | Part62.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1787 | Part62.Position = Vector3.new(4.80000019, 6.93603897, -15.9344645) | |
| 1788 | Part62.Orientation = Vector3.new(-75, 180, -90) | |
| 1789 | Part62.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1790 | Part63.Name = "BladeParts" | |
| 1791 | Part63.Parent = Tool0 | |
| 1792 | Part63.BrickColor = BrickColor.new("Grime")
| |
| 1793 | Part63.Reflectance = 0.10000000149012 | |
| 1794 | Part63.Rotation = Vector3.new(-105, 0, 90) | |
| 1795 | Part63.Anchored = true | |
| 1796 | Part63.CanCollide = false | |
| 1797 | Part63.FormFactor = Enum.FormFactor.Custom | |
| 1798 | Part63.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1799 | Part63.CFrame = CFrame.new(4.80000019, 7.06544781, -15.4515018, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1800 | Part63.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1801 | Part63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1802 | Part63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1803 | Part63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1804 | Part63.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1805 | Part63.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1806 | Part63.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1807 | Part63.Position = Vector3.new(4.80000019, 7.06544781, -15.4515018) | |
| 1808 | Part63.Orientation = Vector3.new(-75, 180, -90) | |
| 1809 | Part63.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1810 | Part64.Name = "BladeParts" | |
| 1811 | Part64.Parent = Tool0 | |
| 1812 | Part64.BrickColor = BrickColor.new("Grime")
| |
| 1813 | Part64.Reflectance = 0.10000000149012 | |
| 1814 | Part64.Rotation = Vector3.new(-105, 0, 90) | |
| 1815 | Part64.Anchored = true | |
| 1816 | Part64.CanCollide = false | |
| 1817 | Part64.FormFactor = Enum.FormFactor.Custom | |
| 1818 | Part64.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1819 | Part64.CFrame = CFrame.new(4.80000019, 8.29018879, -14.7443943, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1820 | Part64.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1821 | Part64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1822 | Part64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1823 | Part64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1824 | Part64.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1825 | Part64.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1826 | Part64.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1827 | Part64.Position = Vector3.new(4.80000019, 8.29018879, -14.7443943) | |
| 1828 | Part64.Orientation = Vector3.new(-75, 180, -90) | |
| 1829 | Part64.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1830 | Part65.Name = "BladeParts" | |
| 1831 | Part65.Parent = Tool0 | |
| 1832 | Part65.BrickColor = BrickColor.new("Grime")
| |
| 1833 | Part65.Reflectance = 0.10000000149012 | |
| 1834 | Part65.Rotation = Vector3.new(-105, 0, 90) | |
| 1835 | Part65.Anchored = true | |
| 1836 | Part65.CanCollide = false | |
| 1837 | Part65.FormFactor = Enum.FormFactor.Custom | |
| 1838 | Part65.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1839 | Part65.CFrame = CFrame.new(4.80000019, 7.32426691, -14.4855757, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1840 | Part65.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1841 | Part65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1842 | Part65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1843 | Part65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1844 | Part65.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1845 | Part65.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1846 | Part65.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1847 | Part65.Position = Vector3.new(4.80000019, 7.32426691, -14.4855757) | |
| 1848 | Part65.Orientation = Vector3.new(-75, 180, -90) | |
| 1849 | Part65.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1850 | Part66.Name = "BladeParts" | |
| 1851 | Part66.Parent = Tool0 | |
| 1852 | Part66.BrickColor = BrickColor.new("Earth green")
| |
| 1853 | Part66.Reflectance = 0.10000000149012 | |
| 1854 | Part66.Rotation = Vector3.new(-105, 0, 90) | |
| 1855 | Part66.Anchored = true | |
| 1856 | Part66.CanCollide = false | |
| 1857 | Part66.FormFactor = Enum.FormFactor.Custom | |
| 1858 | Part66.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1859 | Part66.CFrame = CFrame.new(4.80000019, 5.0041852, -15.4168282, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1860 | Part66.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1861 | Part66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1862 | Part66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1863 | Part66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1864 | Part66.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1865 | Part66.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1866 | Part66.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1867 | Part66.Position = Vector3.new(4.80000019, 5.0041852, -15.4168282) | |
| 1868 | Part66.Orientation = Vector3.new(-75, 180, -90) | |
| 1869 | Part66.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 1870 | Part67.Name = "BladeParts" | |
| 1871 | Part67.Parent = Tool0 | |
| 1872 | Part67.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1873 | Part67.Reflectance = 0.10000000149012 | |
| 1874 | Part67.Rotation = Vector3.new(-105, 0, 90) | |
| 1875 | Part67.Anchored = true | |
| 1876 | Part67.CanCollide = false | |
| 1877 | Part67.FormFactor = Enum.FormFactor.Custom | |
| 1878 | Part67.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1879 | Part67.CFrame = CFrame.new(4.80000019, 5.97011089, -15.6756439, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1880 | Part67.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1881 | Part67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1882 | Part67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1883 | Part67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1884 | Part67.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1885 | Part67.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1886 | Part67.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1887 | Part67.Position = Vector3.new(4.80000019, 5.97011089, -15.6756439) | |
| 1888 | Part67.Orientation = Vector3.new(-75, 180, -90) | |
| 1889 | Part67.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1890 | Part68.Name = "BladeParts" | |
| 1891 | Part68.Parent = Tool0 | |
| 1892 | Part68.BrickColor = BrickColor.new("Pastel green")
| |
| 1893 | Part68.Reflectance = 0.10000000149012 | |
| 1894 | Part68.Rotation = Vector3.new(-105, 0, 90) | |
| 1895 | Part68.Anchored = true | |
| 1896 | Part68.CanCollide = false | |
| 1897 | Part68.FormFactor = Enum.FormFactor.Custom | |
| 1898 | Part68.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1899 | Part68.CFrame = CFrame.new(4.80000019, 6.22893095, -14.7097197, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1900 | Part68.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1901 | Part68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1902 | Part68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1903 | Part68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1904 | Part68.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1905 | Part68.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1906 | Part68.Color = Color3.new(0.8, 1, 0.8) | |
| 1907 | Part68.Position = Vector3.new(4.80000019, 6.22893095, -14.7097197) | |
| 1908 | Part68.Orientation = Vector3.new(-75, 180, -90) | |
| 1909 | Part68.Color = Color3.new(0.8, 1, 0.8) | |
| 1910 | Part69.Name = "BladeParts" | |
| 1911 | Part69.Parent = Tool0 | |
| 1912 | Part69.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1913 | Part69.Reflectance = 0.10000000149012 | |
| 1914 | Part69.Rotation = Vector3.new(-105, 0, 90) | |
| 1915 | Part69.Anchored = true | |
| 1916 | Part69.CanCollide = false | |
| 1917 | Part69.FormFactor = Enum.FormFactor.Custom | |
| 1918 | Part69.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1919 | Part69.CFrame = CFrame.new(4.80000019, 6.5824852, -15.3220901, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1920 | Part69.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1921 | Part69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1922 | Part69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1923 | Part69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1924 | Part69.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1925 | Part69.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1926 | Part69.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1927 | Part69.Position = Vector3.new(4.80000019, 6.5824852, -15.3220901) | |
| 1928 | Part69.Orientation = Vector3.new(-75, 180, -90) | |
| 1929 | Part69.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1930 | Part70.Name = "BladeParts" | |
| 1931 | Part70.Parent = Tool0 | |
| 1932 | Part70.BrickColor = BrickColor.new("Grime")
| |
| 1933 | Part70.Reflectance = 0.10000000149012 | |
| 1934 | Part70.Rotation = Vector3.new(-105, 0, 90) | |
| 1935 | Part70.Anchored = true | |
| 1936 | Part70.CanCollide = false | |
| 1937 | Part70.FormFactor = Enum.FormFactor.Custom | |
| 1938 | Part70.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1939 | Part70.CFrame = CFrame.new(4.80000019, 7.67782116, -15.0979481, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1940 | Part70.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1941 | Part70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1942 | Part70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1943 | Part70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1944 | Part70.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1945 | Part70.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1946 | Part70.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1947 | Part70.Position = Vector3.new(4.80000019, 7.67782116, -15.0979481) | |
| 1948 | Part70.Orientation = Vector3.new(-75, 180, -90) | |
| 1949 | Part70.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1950 | Part71.Name = "BladeParts" | |
| 1951 | Part71.Parent = Tool0 | |
| 1952 | Part71.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 1953 | Part71.Reflectance = 0.10000000149012 | |
| 1954 | Part71.Rotation = Vector3.new(-105, 0, 90) | |
| 1955 | Part71.Anchored = true | |
| 1956 | Part71.CanCollide = false | |
| 1957 | Part71.FormFactor = Enum.FormFactor.Custom | |
| 1958 | Part71.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1959 | Part71.CFrame = CFrame.new(4.80000019, 7.80723095, -14.6149817, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1960 | Part71.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1961 | Part71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1962 | Part71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1963 | Part71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1964 | Part71.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1965 | Part71.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1966 | Part71.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1967 | Part71.Position = Vector3.new(4.80000019, 7.80723095, -14.6149817) | |
| 1968 | Part71.Orientation = Vector3.new(-75, 180, -90) | |
| 1969 | Part71.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 1970 | Part72.Name = "BladeParts" | |
| 1971 | Part72.Parent = Tool0 | |
| 1972 | Part72.BrickColor = BrickColor.new("Grime")
| |
| 1973 | Part72.Reflectance = 0.10000000149012 | |
| 1974 | Part72.Rotation = Vector3.new(-105, 0, 90) | |
| 1975 | Part72.Anchored = true | |
| 1976 | Part72.CanCollide = false | |
| 1977 | Part72.FormFactor = Enum.FormFactor.Custom | |
| 1978 | Part72.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1979 | Part72.CFrame = CFrame.new(4.80000019, 7.93663883, -14.1320257, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 1980 | Part72.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1981 | Part72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1982 | Part72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1983 | Part72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1984 | Part72.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1985 | Part72.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1986 | Part72.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1987 | Part72.Position = Vector3.new(4.80000019, 7.93663883, -14.1320257) | |
| 1988 | Part72.Orientation = Vector3.new(-75, 180, -90) | |
| 1989 | Part72.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 1990 | Part73.Name = "BladeParts" | |
| 1991 | Part73.Parent = Tool0 | |
| 1992 | Part73.BrickColor = BrickColor.new("Grime")
| |
| 1993 | Part73.Reflectance = 0.10000000149012 | |
| 1994 | Part73.Rotation = Vector3.new(-105, 0, 90) | |
| 1995 | Part73.Anchored = true | |
| 1996 | Part73.CanCollide = false | |
| 1997 | Part73.FormFactor = Enum.FormFactor.Custom | |
| 1998 | Part73.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 1999 | Part73.CFrame = CFrame.new(4.80000019, 6.35834122, -14.2267485, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2000 | Part73.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2001 | Part73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2002 | Part73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2003 | Part73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2004 | Part73.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2005 | Part73.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2006 | Part73.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2007 | Part73.Position = Vector3.new(4.80000019, 6.35834122, -14.2267485) | |
| 2008 | Part73.Orientation = Vector3.new(-75, 180, -90) | |
| 2009 | Part73.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2010 | Part74.Name = "BladeParts" | |
| 2011 | Part74.Parent = Tool0 | |
| 2012 | Part74.BrickColor = BrickColor.new("Grime")
| |
| 2013 | Part74.Reflectance = 0.10000000149012 | |
| 2014 | Part74.Rotation = Vector3.new(-105, 0, 90) | |
| 2015 | Part74.Anchored = true | |
| 2016 | Part74.CanCollide = false | |
| 2017 | Part74.FormFactor = Enum.FormFactor.Custom | |
| 2018 | Part74.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2019 | Part74.CFrame = CFrame.new(4.80000019, 7.45367718, -14.0026159, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2020 | Part74.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2021 | Part74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2022 | Part74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2023 | Part74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2024 | Part74.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2025 | Part74.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2026 | Part74.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2027 | Part74.Position = Vector3.new(4.80000019, 7.45367718, -14.0026159) | |
| 2028 | Part74.Orientation = Vector3.new(-75, 180, -90) | |
| 2029 | Part74.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2030 | Part75.Name = "BladeParts" | |
| 2031 | Part75.Parent = Tool0 | |
| 2032 | Part75.BrickColor = BrickColor.new("Grime")
| |
| 2033 | Part75.Reflectance = 0.10000000149012 | |
| 2034 | Part75.Rotation = Vector3.new(-105, 0, 90) | |
| 2035 | Part75.Anchored = true | |
| 2036 | Part75.CanCollide = false | |
| 2037 | Part75.FormFactor = Enum.FormFactor.Custom | |
| 2038 | Part75.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2039 | Part75.CFrame = CFrame.new(4.7999959, 6.71189499, -14.8391304, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2040 | Part75.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2041 | Part75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2042 | Part75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2043 | Part75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2044 | Part75.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2045 | Part75.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2046 | Part75.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2047 | Part75.Position = Vector3.new(4.7999959, 6.71189499, -14.8391304) | |
| 2048 | Part75.Orientation = Vector3.new(-75, 180, -90) | |
| 2049 | Part75.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2050 | Part76.Name = "BladeParts" | |
| 2051 | Part76.Parent = Tool0 | |
| 2052 | Part76.BrickColor = BrickColor.new("Sand green")
| |
| 2053 | Part76.Reflectance = 0.10000000149012 | |
| 2054 | Part76.Rotation = Vector3.new(-105, 0, 90) | |
| 2055 | Part76.Anchored = true | |
| 2056 | Part76.CanCollide = false | |
| 2057 | Part76.FormFactor = Enum.FormFactor.Custom | |
| 2058 | Part76.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2059 | Part76.CFrame = CFrame.new(4.80000019, 5.61655807, -15.0632763, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2060 | Part76.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2061 | Part76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2062 | Part76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2063 | Part76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2064 | Part76.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2065 | Part76.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2066 | Part76.Color = Color3.new(0.470588, 0.564706, 0.509804) | |
| 2067 | Part76.Position = Vector3.new(4.80000019, 5.61655807, -15.0632763) | |
| 2068 | Part76.Orientation = Vector3.new(-75, 180, -90) | |
| 2069 | Part76.Color = Color3.new(0.470588, 0.564706, 0.509804) | |
| 2070 | Part77.Name = "BladeParts" | |
| 2071 | Part77.Parent = Tool0 | |
| 2072 | Part77.BrickColor = BrickColor.new("Grime")
| |
| 2073 | Part77.Reflectance = 0.10000000149012 | |
| 2074 | Part77.Rotation = Vector3.new(-105, 0, 90) | |
| 2075 | Part77.Anchored = true | |
| 2076 | Part77.CanCollide = false | |
| 2077 | Part77.FormFactor = Enum.FormFactor.Custom | |
| 2078 | Part77.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2079 | Part77.CFrame = CFrame.new(4.80000019, 6.84130287, -14.3561659, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2080 | Part77.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2081 | Part77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2082 | Part77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2083 | Part77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2084 | Part77.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2085 | Part77.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2086 | Part77.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2087 | Part77.Position = Vector3.new(4.80000019, 6.84130287, -14.3561659) | |
| 2088 | Part77.Orientation = Vector3.new(-75, 180, -90) | |
| 2089 | Part77.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2090 | Part78.Name = "BladeParts" | |
| 2091 | Part78.Parent = Tool0 | |
| 2092 | Part78.BrickColor = BrickColor.new("Earth green")
| |
| 2093 | Part78.Reflectance = 0.10000000149012 | |
| 2094 | Part78.Rotation = Vector3.new(-105, 0, 90) | |
| 2095 | Part78.Anchored = true | |
| 2096 | Part78.CanCollide = false | |
| 2097 | Part78.FormFactor = Enum.FormFactor.Custom | |
| 2098 | Part78.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2099 | Part78.CFrame = CFrame.new(4.80000019, 5.74596786, -14.5803099, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2100 | Part78.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2101 | Part78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2102 | Part78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2103 | Part78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2104 | Part78.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2105 | Part78.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2106 | Part78.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 2107 | Part78.Position = Vector3.new(4.80000019, 5.74596786, -14.5803099) | |
| 2108 | Part78.Orientation = Vector3.new(-75, 180, -90) | |
| 2109 | Part78.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 2110 | Part79.Name = "fakeHandleParts" | |
| 2111 | Part79.Parent = Tool0 | |
| 2112 | Part79.BrickColor = BrickColor.new("Cool yellow")
| |
| 2113 | Part79.Reflectance = 0.10000000149012 | |
| 2114 | Part79.Rotation = Vector3.new(-105, 0, 90) | |
| 2115 | Part79.Anchored = true | |
| 2116 | Part79.CanCollide = false | |
| 2117 | Part79.FormFactor = Enum.FormFactor.Custom | |
| 2118 | Part79.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2119 | Part79.CFrame = CFrame.new(4.80000019, 3.744766, -18.1851959, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2120 | Part79.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2121 | Part79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2122 | Part79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2123 | Part79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2124 | Part79.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2125 | Part79.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2126 | Part79.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 2127 | Part79.Position = Vector3.new(4.80000019, 3.744766, -18.1851959) | |
| 2128 | Part79.Orientation = Vector3.new(-75, 180, -90) | |
| 2129 | Part79.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 2130 | Part80.Name = "fakeHandleParts" | |
| 2131 | Part80.Parent = Tool0 | |
| 2132 | Part80.BrickColor = BrickColor.new("Lavender")
| |
| 2133 | Part80.Reflectance = 0.10000000149012 | |
| 2134 | Part80.Rotation = Vector3.new(-105, 0, 90) | |
| 2135 | Part80.Anchored = true | |
| 2136 | Part80.CanCollide = false | |
| 2137 | Part80.FormFactor = Enum.FormFactor.Custom | |
| 2138 | Part80.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2139 | Part80.CFrame = CFrame.new(4.80000019, 3.29647899, -15.9945259, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2140 | Part80.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2141 | Part80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2142 | Part80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2143 | Part80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2144 | Part80.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2145 | Part80.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2146 | Part80.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 2147 | Part80.Position = Vector3.new(4.80000019, 3.29647899, -15.9945259) | |
| 2148 | Part80.Orientation = Vector3.new(-75, 180, -90) | |
| 2149 | Part80.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 2150 | Part81.Name = "BladeParts" | |
| 2151 | Part81.Parent = Tool0 | |
| 2152 | Part81.BrickColor = BrickColor.new("Earth green")
| |
| 2153 | Part81.Reflectance = 0.10000000149012 | |
| 2154 | Part81.Rotation = Vector3.new(-105, 0, 90) | |
| 2155 | Part81.Anchored = true | |
| 2156 | Part81.CanCollide = false | |
| 2157 | Part81.FormFactor = Enum.FormFactor.Custom | |
| 2158 | Part81.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2159 | Part81.CFrame = CFrame.new(4.80000019, 4.61595678, -16.8657169, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2160 | Part81.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2161 | Part81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2162 | Part81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2163 | Part81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2164 | Part81.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2165 | Part81.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2166 | Part81.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 2167 | Part81.Position = Vector3.new(4.80000019, 4.61595678, -16.8657169) | |
| 2168 | Part81.Orientation = Vector3.new(-75, 180, -90) | |
| 2169 | Part81.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 2170 | Part82.Name = "BladeParts" | |
| 2171 | Part82.Parent = Tool0 | |
| 2172 | Part82.BrickColor = BrickColor.new("Dark green")
| |
| 2173 | Part82.Reflectance = 0.10000000149012 | |
| 2174 | Part82.Rotation = Vector3.new(-105, 0, 90) | |
| 2175 | Part82.Anchored = true | |
| 2176 | Part82.CanCollide = false | |
| 2177 | Part82.FormFactor = Enum.FormFactor.Custom | |
| 2178 | Part82.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2179 | Part82.CFrame = CFrame.new(4.80000019, 4.48654604, -17.3486786, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2180 | Part82.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2181 | Part82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2182 | Part82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2183 | Part82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2184 | Part82.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2185 | Part82.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2186 | Part82.Color = Color3.new(0.156863, 0.498039, 0.278431) | |
| 2187 | Part82.Position = Vector3.new(4.80000019, 4.48654604, -17.3486786) | |
| 2188 | Part82.Orientation = Vector3.new(-75, 180, -90) | |
| 2189 | Part82.Color = Color3.new(0.156863, 0.498039, 0.278431) | |
| 2190 | Part83.Name = "BladeParts" | |
| 2191 | Part83.Parent = Tool0 | |
| 2192 | Part83.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 2193 | Part83.Reflectance = 0.10000000149012 | |
| 2194 | Part83.Rotation = Vector3.new(-105, 0, 90) | |
| 2195 | Part83.Anchored = true | |
| 2196 | Part83.CanCollide = false | |
| 2197 | Part83.FormFactor = Enum.FormFactor.Custom | |
| 2198 | Part83.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2199 | Part83.CFrame = CFrame.new(4.80000019, 4.7453661, -16.3827496, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2200 | Part83.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2201 | Part83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2202 | Part83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2203 | Part83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2204 | Part83.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2205 | Part83.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2206 | Part83.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 2207 | Part83.Position = Vector3.new(4.80000019, 4.7453661, -16.3827496) | |
| 2208 | Part83.Orientation = Vector3.new(-75, 180, -90) | |
| 2209 | Part83.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 2210 | Part84.Name = "fakeHandleParts" | |
| 2211 | Part84.Parent = Tool0 | |
| 2212 | Part84.BrickColor = BrickColor.new("Lavender")
| |
| 2213 | Part84.Reflectance = 0.10000000149012 | |
| 2214 | Part84.Rotation = Vector3.new(-105, 0, 90) | |
| 2215 | Part84.Anchored = true | |
| 2216 | Part84.CanCollide = false | |
| 2217 | Part84.FormFactor = Enum.FormFactor.Custom | |
| 2218 | Part84.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2219 | Part84.CFrame = CFrame.new(4.80000019, 3.65003204, -16.6068974, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2220 | Part84.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2221 | Part84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2222 | Part84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2223 | Part84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2224 | Part84.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2225 | Part84.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2226 | Part84.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 2227 | Part84.Position = Vector3.new(4.80000019, 3.65003204, -16.6068974) | |
| 2228 | Part84.Orientation = Vector3.new(-75, 180, -90) | |
| 2229 | Part84.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 2230 | Part85.Name = "BladeParts" | |
| 2231 | Part85.Parent = Tool0 | |
| 2232 | Part85.BrickColor = BrickColor.new("Earth green")
| |
| 2233 | Part85.Reflectance = 0.10000000149012 | |
| 2234 | Part85.Rotation = Vector3.new(-105, 0, 90) | |
| 2235 | Part85.Anchored = true | |
| 2236 | Part85.CanCollide = false | |
| 2237 | Part85.FormFactor = Enum.FormFactor.Custom | |
| 2238 | Part85.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2239 | Part85.CFrame = CFrame.new(4.80000019, 5.22833014, -16.5121593, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2240 | Part85.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2241 | Part85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2242 | Part85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2243 | Part85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2244 | Part85.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2245 | Part85.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2246 | Part85.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 2247 | Part85.Position = Vector3.new(4.80000019, 5.22833014, -16.5121593) | |
| 2248 | Part85.Orientation = Vector3.new(-75, 180, -90) | |
| 2249 | Part85.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 2250 | Part86.Name = "BladeParts" | |
| 2251 | Part86.Parent = Tool0 | |
| 2252 | Part86.BrickColor = BrickColor.new("Earth green")
| |
| 2253 | Part86.Reflectance = 0.10000000149012 | |
| 2254 | Part86.Rotation = Vector3.new(-105, 0, 90) | |
| 2255 | Part86.Anchored = true | |
| 2256 | Part86.CanCollide = false | |
| 2257 | Part86.FormFactor = Enum.FormFactor.Custom | |
| 2258 | Part86.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2259 | Part86.CFrame = CFrame.new(4.80000019, 4.26240301, -16.2533398, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2260 | Part86.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2261 | Part86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2262 | Part86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2263 | Part86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2264 | Part86.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2265 | Part86.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2266 | Part86.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 2267 | Part86.Position = Vector3.new(4.80000019, 4.26240301, -16.2533398) | |
| 2268 | Part86.Orientation = Vector3.new(-75, 180, -90) | |
| 2269 | Part86.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 2270 | Part87.Name = "BladeParts" | |
| 2271 | Part87.Parent = Tool0 | |
| 2272 | Part87.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 2273 | Part87.Reflectance = 0.10000000149012 | |
| 2274 | Part87.Rotation = Vector3.new(-105, 0, 90) | |
| 2275 | Part87.Anchored = true | |
| 2276 | Part87.CanCollide = false | |
| 2277 | Part87.FormFactor = Enum.FormFactor.Custom | |
| 2278 | Part87.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2279 | Part87.CFrame = CFrame.new(4.80000019, 4.13299417, -16.7363033, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2280 | Part87.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2281 | Part87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2282 | Part87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2283 | Part87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2284 | Part87.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2285 | Part87.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2286 | Part87.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 2287 | Part87.Position = Vector3.new(4.80000019, 4.13299417, -16.7363033) | |
| 2288 | Part87.Orientation = Vector3.new(-75, 180, -90) | |
| 2289 | Part87.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 2290 | Part88.Name = "BladeParts" | |
| 2291 | Part88.Parent = Tool0 | |
| 2292 | Part88.BrickColor = BrickColor.new("Bright green")
| |
| 2293 | Part88.Reflectance = 0.10000000149012 | |
| 2294 | Part88.Rotation = Vector3.new(-105, 0, 90) | |
| 2295 | Part88.Anchored = true | |
| 2296 | Part88.CanCollide = false | |
| 2297 | Part88.FormFactor = Enum.FormFactor.Custom | |
| 2298 | Part88.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2299 | Part88.CFrame = CFrame.new(4.80000019, 4.00358486, -17.2192688, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2300 | Part88.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2301 | Part88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2302 | Part88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2303 | Part88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2304 | Part88.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2305 | Part88.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2306 | Part88.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 2307 | Part88.Position = Vector3.new(4.80000019, 4.00358486, -17.2192688) | |
| 2308 | Part88.Orientation = Vector3.new(-75, 180, -90) | |
| 2309 | Part88.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 2310 | Part89.Name = "BladeParts" | |
| 2311 | Part89.Parent = Tool0 | |
| 2312 | Part89.BrickColor = BrickColor.new("Bright green")
| |
| 2313 | Part89.Reflectance = 0.10000000149012 | |
| 2314 | Part89.Rotation = Vector3.new(-105, 0, 90) | |
| 2315 | Part89.Anchored = true | |
| 2316 | Part89.CanCollide = false | |
| 2317 | Part89.FormFactor = Enum.FormFactor.Custom | |
| 2318 | Part89.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2319 | Part89.CFrame = CFrame.new(4.80000019, 4.3571372, -17.8316422, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2320 | Part89.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2321 | Part89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2322 | Part89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2323 | Part89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2324 | Part89.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2325 | Part89.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2326 | Part89.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 2327 | Part89.Position = Vector3.new(4.80000019, 4.3571372, -17.8316422) | |
| 2328 | Part89.Orientation = Vector3.new(-75, 180, -90) | |
| 2329 | Part89.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 2330 | Part90.Name = "fakeHandleParts" | |
| 2331 | Part90.Parent = Tool0 | |
| 2332 | Part90.BrickColor = BrickColor.new("Olive")
| |
| 2333 | Part90.Reflectance = 0.10000000149012 | |
| 2334 | Part90.Rotation = Vector3.new(-105, 0, 90) | |
| 2335 | Part90.Anchored = true | |
| 2336 | Part90.CanCollide = false | |
| 2337 | Part90.FormFactor = Enum.FormFactor.Custom | |
| 2338 | Part90.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2339 | Part90.CFrame = CFrame.new(4.80000019, 3.16706896, -16.4774876, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2340 | Part90.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2341 | Part90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2342 | Part90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2343 | Part90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2344 | Part90.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2345 | Part90.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2346 | Part90.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 2347 | Part90.Position = Vector3.new(4.80000019, 3.16706896, -16.4774876) | |
| 2348 | Part90.Orientation = Vector3.new(-75, 180, -90) | |
| 2349 | Part90.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 2350 | Part91.Name = "BladeParts" | |
| 2351 | Part91.Parent = Tool0 | |
| 2352 | Part91.BrickColor = BrickColor.new("Toothpaste")
| |
| 2353 | Part91.Reflectance = 0.10000000149012 | |
| 2354 | Part91.Rotation = Vector3.new(-105, 0, 90) | |
| 2355 | Part91.Anchored = true | |
| 2356 | Part91.CanCollide = false | |
| 2357 | Part91.FormFactor = Enum.FormFactor.Custom | |
| 2358 | Part91.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2359 | Part91.CFrame = CFrame.new(4.80000019, 3.87417603, -17.7022324, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2360 | Part91.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2361 | Part91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2362 | Part91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2363 | Part91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2364 | Part91.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2365 | Part91.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2366 | Part91.Color = Color3.new(0, 1, 1) | |
| 2367 | Part91.Position = Vector3.new(4.80000019, 3.87417603, -17.7022324) | |
| 2368 | Part91.Orientation = Vector3.new(-75, 180, -90) | |
| 2369 | Part91.Color = Color3.new(0, 1, 1) | |
| 2370 | Part92.Name = "fakeHandleParts" | |
| 2371 | Part92.Parent = Tool0 | |
| 2372 | Part92.BrickColor = BrickColor.new("Light orange")
| |
| 2373 | Part92.Reflectance = 0.10000000149012 | |
| 2374 | Part92.Rotation = Vector3.new(-105, 0, 90) | |
| 2375 | Part92.Anchored = true | |
| 2376 | Part92.CanCollide = false | |
| 2377 | Part92.FormFactor = Enum.FormFactor.Custom | |
| 2378 | Part92.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2379 | Part92.CFrame = CFrame.new(4.80000019, 3.26180291, -18.0557861, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2380 | Part92.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2381 | Part92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2382 | Part92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2383 | Part92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2384 | Part92.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2385 | Part92.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2386 | Part92.Color = Color3.new(0.917647, 0.721569, 0.572549) | |
| 2387 | Part92.Position = Vector3.new(4.80000019, 3.26180291, -18.0557861) | |
| 2388 | Part92.Orientation = Vector3.new(-75, 180, -90) | |
| 2389 | Part92.Color = Color3.new(0.917647, 0.721569, 0.572549) | |
| 2390 | Part93.Name = "fakeHandleParts" | |
| 2391 | Part93.Parent = Tool0 | |
| 2392 | Part93.BrickColor = BrickColor.new("Cool yellow")
| |
| 2393 | Part93.Reflectance = 0.10000000149012 | |
| 2394 | Part93.Rotation = Vector3.new(-105, 0, 90) | |
| 2395 | Part93.Anchored = true | |
| 2396 | Part93.CanCollide = false | |
| 2397 | Part93.FormFactor = Enum.FormFactor.Custom | |
| 2398 | Part93.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2399 | Part93.CFrame = CFrame.new(4.80000019, 3.39121103, -17.5728226, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2400 | Part93.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2401 | Part93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2402 | Part93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2403 | Part93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2404 | Part93.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2405 | Part93.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2406 | Part93.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 2407 | Part93.Position = Vector3.new(4.80000019, 3.39121103, -17.5728226) | |
| 2408 | Part93.Orientation = Vector3.new(-75, 180, -90) | |
| 2409 | Part93.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 2410 | Part94.Name = "fakeHandleParts" | |
| 2411 | Part94.Parent = Tool0 | |
| 2412 | Part94.BrickColor = BrickColor.new("Deep orange")
| |
| 2413 | Part94.Reflectance = 0.10000000149012 | |
| 2414 | Part94.Rotation = Vector3.new(-105, 0, 90) | |
| 2415 | Part94.Anchored = true | |
| 2416 | Part94.CanCollide = false | |
| 2417 | Part94.FormFactor = Enum.FormFactor.Custom | |
| 2418 | Part94.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2419 | Part94.CFrame = CFrame.new(4.80000019, 3.03765893, -16.9604549, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2420 | Part94.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2421 | Part94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2422 | Part94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2423 | Part94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2424 | Part94.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2425 | Part94.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2426 | Part94.Color = Color3.new(1, 0.690196, 0) | |
| 2427 | Part94.Position = Vector3.new(4.80000019, 3.03765893, -16.9604549) | |
| 2428 | Part94.Orientation = Vector3.new(-75, 180, -90) | |
| 2429 | Part94.Color = Color3.new(1, 0.690196, 0) | |
| 2430 | Part95.Name = "fakeHandleParts" | |
| 2431 | Part95.Parent = Tool0 | |
| 2432 | Part95.BrickColor = BrickColor.new("Olive")
| |
| 2433 | Part95.Reflectance = 0.10000000149012 | |
| 2434 | Part95.Rotation = Vector3.new(-105, 0, 90) | |
| 2435 | Part95.Anchored = true | |
| 2436 | Part95.CanCollide = false | |
| 2437 | Part95.FormFactor = Enum.FormFactor.Custom | |
| 2438 | Part95.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2439 | Part95.CFrame = CFrame.new(4.80000019, 2.90825105, -17.4434052, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2440 | Part95.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2441 | Part95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2442 | Part95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2443 | Part95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2444 | Part95.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2445 | Part95.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2446 | Part95.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 2447 | Part95.Position = Vector3.new(4.80000019, 2.90825105, -17.4434052) | |
| 2448 | Part95.Orientation = Vector3.new(-75, 180, -90) | |
| 2449 | Part95.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 2450 | Part96.Name = "BladeParts" | |
| 2451 | Part96.Parent = Tool0 | |
| 2452 | Part96.BrickColor = BrickColor.new("Camo")
| |
| 2453 | Part96.Reflectance = 0.10000000149012 | |
| 2454 | Part96.Rotation = Vector3.new(-105, 0, 90) | |
| 2455 | Part96.Anchored = true | |
| 2456 | Part96.CanCollide = false | |
| 2457 | Part96.FormFactor = Enum.FormFactor.Custom | |
| 2458 | Part96.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2459 | Part96.CFrame = CFrame.new(4.80000019, 14.2498302, -13.7530842, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2460 | Part96.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2461 | Part96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2462 | Part96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2463 | Part96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2464 | Part96.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2465 | Part96.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2466 | Part96.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 2467 | Part96.Position = Vector3.new(4.80000019, 14.2498302, -13.7530842) | |
| 2468 | Part96.Orientation = Vector3.new(-75, 180, -90) | |
| 2469 | Part96.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 2470 | Part97.Name = "BladeParts" | |
| 2471 | Part97.Parent = Tool0 | |
| 2472 | Part97.BrickColor = BrickColor.new("Dark orange")
| |
| 2473 | Part97.Reflectance = 0.10000000149012 | |
| 2474 | Part97.Rotation = Vector3.new(-105, 0, 90) | |
| 2475 | Part97.Anchored = true | |
| 2476 | Part97.CanCollide = false | |
| 2477 | Part97.FormFactor = Enum.FormFactor.Custom | |
| 2478 | Part97.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2479 | Part97.CFrame = CFrame.new(4.80000019, 10.3861303, -12.7178059, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2480 | Part97.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2481 | Part97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2482 | Part97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2483 | Part97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2484 | Part97.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2485 | Part97.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2486 | Part97.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 2487 | Part97.Position = Vector3.new(4.80000019, 10.3861303, -12.7178059) | |
| 2488 | Part97.Orientation = Vector3.new(-75, 180, -90) | |
| 2489 | Part97.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 2490 | Part98.Name = "BladeParts" | |
| 2491 | Part98.Parent = Tool0 | |
| 2492 | Part98.BrickColor = BrickColor.new("Dark orange")
| |
| 2493 | Part98.Reflectance = 0.10000000149012 | |
| 2494 | Part98.Rotation = Vector3.new(-105, 0, 90) | |
| 2495 | Part98.Anchored = true | |
| 2496 | Part98.CanCollide = false | |
| 2497 | Part98.FormFactor = Enum.FormFactor.Custom | |
| 2498 | Part98.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2499 | Part98.CFrame = CFrame.new(4.7999959, 9.77375603, -13.0713615, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2500 | Part98.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2501 | Part98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2502 | Part98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2503 | Part98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2504 | Part98.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2505 | Part98.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2506 | Part98.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 2507 | Part98.Position = Vector3.new(4.7999959, 9.77375603, -13.0713615) | |
| 2508 | Part98.Orientation = Vector3.new(-75, 180, -90) | |
| 2509 | Part98.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 2510 | Part99.Name = "BladeParts" | |
| 2511 | Part99.Parent = Tool0 | |
| 2512 | Part99.BrickColor = BrickColor.new("Grime")
| |
| 2513 | Part99.Reflectance = 0.10000000149012 | |
| 2514 | Part99.Rotation = Vector3.new(-105, 0, 90) | |
| 2515 | Part99.Anchored = true | |
| 2516 | Part99.CanCollide = false | |
| 2517 | Part99.FormFactor = Enum.FormFactor.Custom | |
| 2518 | Part99.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2519 | Part99.CFrame = CFrame.new(4.80000019, 9.16138172, -13.4249125, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2520 | Part99.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2521 | Part99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2522 | Part99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2523 | Part99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2524 | Part99.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2525 | Part99.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2526 | Part99.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2527 | Part99.Position = Vector3.new(4.80000019, 9.16138172, -13.4249125) | |
| 2528 | Part99.Orientation = Vector3.new(-75, 180, -90) | |
| 2529 | Part99.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2530 | Part100.Name = "BladeParts" | |
| 2531 | Part100.Parent = Tool0 | |
| 2532 | Part100.BrickColor = BrickColor.new("Grime")
| |
| 2533 | Part100.Reflectance = 0.10000000149012 | |
| 2534 | Part100.Rotation = Vector3.new(-105, 0, 90) | |
| 2535 | Part100.Anchored = true | |
| 2536 | Part100.CanCollide = false | |
| 2537 | Part100.FormFactor = Enum.FormFactor.Custom | |
| 2538 | Part100.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2539 | Part100.CFrame = CFrame.new(4.80000019, 8.54901028, -13.7784719, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2540 | Part100.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2541 | Part100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2542 | Part100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2543 | Part100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2544 | Part100.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2545 | Part100.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2546 | Part100.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2547 | Part100.Position = Vector3.new(4.80000019, 8.54901028, -13.7784719) | |
| 2548 | Part100.Orientation = Vector3.new(-75, 180, -90) | |
| 2549 | Part100.Color = Color3.new(0.498039, 0.556863, 0.392157) | |
| 2550 | Part101.Name = "BladeParts" | |
| 2551 | Part101.Parent = Tool0 | |
| 2552 | Part101.BrickColor = BrickColor.new("Camo")
| |
| 2553 | Part101.Reflectance = 0.10000000149012 | |
| 2554 | Part101.Rotation = Vector3.new(-105, 0, 90) | |
| 2555 | Part101.Anchored = true | |
| 2556 | Part101.CanCollide = false | |
| 2557 | Part101.FormFactor = Enum.FormFactor.Custom | |
| 2558 | Part101.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2559 | Part101.CFrame = CFrame.new(4.80000019, 13.6374598, -14.106638, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2560 | Part101.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2561 | Part101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2562 | Part101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2563 | Part101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2564 | Part101.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2565 | Part101.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2566 | Part101.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 2567 | Part101.Position = Vector3.new(4.80000019, 13.6374598, -14.106638) | |
| 2568 | Part101.Orientation = Vector3.new(-75, 180, -90) | |
| 2569 | Part101.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 2570 | Part102.Name = "BladeParts" | |
| 2571 | Part102.Parent = Tool0 | |
| 2572 | Part102.BrickColor = BrickColor.new("Camo")
| |
| 2573 | Part102.Reflectance = 0.10000000149012 | |
| 2574 | Part102.Rotation = Vector3.new(-105, 0, 90) | |
| 2575 | Part102.Anchored = true | |
| 2576 | Part102.CanCollide = false | |
| 2577 | Part102.FormFactor = Enum.FormFactor.Custom | |
| 2578 | Part102.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2579 | Part102.CFrame = CFrame.new(4.80000019, 14.8622084, -13.3995304, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2580 | Part102.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2581 | Part102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2582 | Part102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2583 | Part102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2584 | Part102.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2585 | Part102.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2586 | Part102.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 2587 | Part102.Position = Vector3.new(4.80000019, 14.8622084, -13.3995304) | |
| 2588 | Part102.Orientation = Vector3.new(-75, 180, -90) | |
| 2589 | Part102.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 2590 | Part103.Name = "fakeHandleParts" | |
| 2591 | Part103.Parent = Tool0 | |
| 2592 | Part103.BrickColor = BrickColor.new("Dusty Rose")
| |
| 2593 | Part103.Reflectance = 0.10000000149012 | |
| 2594 | Part103.Rotation = Vector3.new(-105, 0, 90) | |
| 2595 | Part103.Anchored = true | |
| 2596 | Part103.CanCollide = false | |
| 2597 | Part103.FormFactor = Enum.FormFactor.Custom | |
| 2598 | Part103.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2599 | Part103.CFrame = CFrame.new(4.7999959, 3.52062297, -17.0898609, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2600 | Part103.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2601 | Part103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2602 | Part103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2603 | Part103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2604 | Part103.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2605 | Part103.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2606 | Part103.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 2607 | Part103.Position = Vector3.new(4.7999959, 3.52062297, -17.0898609) | |
| 2608 | Part103.Orientation = Vector3.new(-75, 180, -90) | |
| 2609 | Part103.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 2610 | Part104.Name = "fakeHandleParts" | |
| 2611 | Part104.Parent = Tool0 | |
| 2612 | Part104.BrickColor = BrickColor.new("Brown")
| |
| 2613 | Part104.Reflectance = 0.10000000149012 | |
| 2614 | Part104.Rotation = Vector3.new(-105, 0, 90) | |
| 2615 | Part104.Anchored = true | |
| 2616 | Part104.CanCollide = false | |
| 2617 | Part104.FormFactor = Enum.FormFactor.Custom | |
| 2618 | Part104.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2619 | Part104.CFrame = CFrame.new(4.80000019, 1.29527497, -19.5994072, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2620 | Part104.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2621 | Part104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2622 | Part104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2623 | Part104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2624 | Part104.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2625 | Part104.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2626 | Part104.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2627 | Part104.Position = Vector3.new(4.80000019, 1.29527497, -19.5994072) | |
| 2628 | Part104.Orientation = Vector3.new(-75, 180, -90) | |
| 2629 | Part104.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2630 | Part105.Name = "fakeHandleParts" | |
| 2631 | Part105.Parent = Tool0 | |
| 2632 | Part105.BrickColor = BrickColor.new("Brown")
| |
| 2633 | Part105.Reflectance = 0.10000000149012 | |
| 2634 | Part105.Rotation = Vector3.new(-105, 0, 90) | |
| 2635 | Part105.Anchored = true | |
| 2636 | Part105.CanCollide = false | |
| 2637 | Part105.FormFactor = Enum.FormFactor.Custom | |
| 2638 | Part105.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2639 | Part105.CFrame = CFrame.new(4.80000019, 0.81231302, -19.4699974, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2640 | Part105.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2641 | Part105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2642 | Part105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2643 | Part105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2644 | Part105.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2645 | Part105.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2646 | Part105.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2647 | Part105.Position = Vector3.new(4.80000019, 0.81231302, -19.4699974) | |
| 2648 | Part105.Orientation = Vector3.new(-75, 180, -90) | |
| 2649 | Part105.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2650 | Part106.Name = "fakeHandleParts" | |
| 2651 | Part106.Parent = Tool0 | |
| 2652 | Part106.BrickColor = BrickColor.new("Nougat")
| |
| 2653 | Part106.Reflectance = 0.10000000149012 | |
| 2654 | Part106.Rotation = Vector3.new(-105, 0, 90) | |
| 2655 | Part106.Anchored = true | |
| 2656 | Part106.CanCollide = false | |
| 2657 | Part106.FormFactor = Enum.FormFactor.Custom | |
| 2658 | Part106.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2659 | Part106.CFrame = CFrame.new(4.80000019, 1.55409396, -18.6334839, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2660 | Part106.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2661 | Part106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2662 | Part106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2663 | Part106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2664 | Part106.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2665 | Part106.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2666 | Part106.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 2667 | Part106.Position = Vector3.new(4.80000019, 1.55409396, -18.6334839) | |
| 2668 | Part106.Orientation = Vector3.new(-75, 180, -90) | |
| 2669 | Part106.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 2670 | Part107.Name = "fakeHandleParts" | |
| 2671 | Part107.Parent = Tool0 | |
| 2672 | Part107.BrickColor = BrickColor.new("Brown")
| |
| 2673 | Part107.Reflectance = 0.10000000149012 | |
| 2674 | Part107.Rotation = Vector3.new(-105, 0, 90) | |
| 2675 | Part107.Anchored = true | |
| 2676 | Part107.CanCollide = false | |
| 2677 | Part107.FormFactor = Enum.FormFactor.Custom | |
| 2678 | Part107.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2679 | Part107.CFrame = CFrame.new(4.80000019, 2.52002096, -18.8923035, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2680 | Part107.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2681 | Part107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2682 | Part107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2683 | Part107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2684 | Part107.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2685 | Part107.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2686 | Part107.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2687 | Part107.Position = Vector3.new(4.80000019, 2.52002096, -18.8923035) | |
| 2688 | Part107.Orientation = Vector3.new(-75, 180, -90) | |
| 2689 | Part107.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2690 | Part108.Name = "fakeHandleParts" | |
| 2691 | Part108.Parent = Tool0 | |
| 2692 | Part108.BrickColor = BrickColor.new("Brown")
| |
| 2693 | Part108.Reflectance = 0.10000000149012 | |
| 2694 | Part108.Rotation = Vector3.new(-105, 0, 90) | |
| 2695 | Part108.Anchored = true | |
| 2696 | Part108.CanCollide = false | |
| 2697 | Part108.FormFactor = Enum.FormFactor.Custom | |
| 2698 | Part108.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2699 | Part108.CFrame = CFrame.new(4.80000019, 3.13239503, -18.5387497, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2700 | Part108.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2701 | Part108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2702 | Part108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2703 | Part108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2704 | Part108.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2705 | Part108.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2706 | Part108.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2707 | Part108.Position = Vector3.new(4.80000019, 3.13239503, -18.5387497) | |
| 2708 | Part108.Orientation = Vector3.new(-75, 180, -90) | |
| 2709 | Part108.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2710 | Part109.Name = "fakeHandleParts" | |
| 2711 | Part109.Parent = Tool0 | |
| 2712 | Part109.BrickColor = BrickColor.new("Dusty Rose")
| |
| 2713 | Part109.Reflectance = 0.10000000149012 | |
| 2714 | Part109.Rotation = Vector3.new(-105, 0, 90) | |
| 2715 | Part109.Anchored = true | |
| 2716 | Part109.CanCollide = false | |
| 2717 | Part109.FormFactor = Enum.FormFactor.Custom | |
| 2718 | Part109.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2719 | Part109.CFrame = CFrame.new(4.80000019, 0.458759993, -18.8576279, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2720 | Part109.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2721 | Part109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2722 | Part109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2723 | Part109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2724 | Part109.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2725 | Part109.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2726 | Part109.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 2727 | Part109.Position = Vector3.new(4.80000019, 0.458759993, -18.8576279) | |
| 2728 | Part109.Orientation = Vector3.new(-75, 180, -90) | |
| 2729 | Part109.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 2730 | Part110.Name = "fakeHandleParts" | |
| 2731 | Part110.Parent = Tool0 | |
| 2732 | Part110.BrickColor = BrickColor.new("Olive")
| |
| 2733 | Part110.Reflectance = 0.10000000149012 | |
| 2734 | Part110.Rotation = Vector3.new(-105, 0, 90) | |
| 2735 | Part110.Anchored = true | |
| 2736 | Part110.CanCollide = false | |
| 2737 | Part110.FormFactor = Enum.FormFactor.Custom | |
| 2738 | Part110.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2739 | Part110.CFrame = CFrame.new(4.80000019, 2.64942908, -18.4093399, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2740 | Part110.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2741 | Part110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2742 | Part110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2743 | Part110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2744 | Part110.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2745 | Part110.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2746 | Part110.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 2747 | Part110.Position = Vector3.new(4.80000019, 2.64942908, -18.4093399) | |
| 2748 | Part110.Orientation = Vector3.new(-75, 180, -90) | |
| 2749 | Part110.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 2750 | Part111.Name = "fakeHandleParts" | |
| 2751 | Part111.Parent = Tool0 | |
| 2752 | Part111.BrickColor = BrickColor.new("Lavender")
| |
| 2753 | Part111.Reflectance = 0.10000000149012 | |
| 2754 | Part111.Rotation = Vector3.new(-105, 0, 90) | |
| 2755 | Part111.Anchored = true | |
| 2756 | Part111.CanCollide = false | |
| 2757 | Part111.FormFactor = Enum.FormFactor.Custom | |
| 2758 | Part111.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2759 | Part111.CFrame = CFrame.new(4.80000019, 1.07113194, -18.5040741, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2760 | Part111.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2761 | Part111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2762 | Part111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2763 | Part111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2764 | Part111.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2765 | Part111.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2766 | Part111.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 2767 | Part111.Position = Vector3.new(4.80000019, 1.07113194, -18.5040741) | |
| 2768 | Part111.Orientation = Vector3.new(-75, 180, -90) | |
| 2769 | Part111.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 2770 | Part112.Name = "fakeHandleParts" | |
| 2771 | Part112.Parent = Tool0 | |
| 2772 | Part112.BrickColor = BrickColor.new("Brown")
| |
| 2773 | Part112.Reflectance = 0.10000000149012 | |
| 2774 | Part112.Rotation = Vector3.new(-105, 0, 90) | |
| 2775 | Part112.Anchored = true | |
| 2776 | Part112.CanCollide = false | |
| 2777 | Part112.FormFactor = Enum.FormFactor.Custom | |
| 2778 | Part112.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2779 | Part112.CFrame = CFrame.new(4.80000019, 1.90764904, -19.2458572, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2780 | Part112.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2781 | Part112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2782 | Part112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2783 | Part112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2784 | Part112.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2785 | Part112.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2786 | Part112.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2787 | Part112.Position = Vector3.new(4.80000019, 1.90764904, -19.2458572) | |
| 2788 | Part112.Orientation = Vector3.new(-75, 180, -90) | |
| 2789 | Part112.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2790 | Part113.Name = "fakeHandleParts" | |
| 2791 | Part113.Parent = Tool0 | |
| 2792 | Part113.BrickColor = BrickColor.new("Deep orange")
| |
| 2793 | Part113.Reflectance = 0.10000000149012 | |
| 2794 | Part113.Rotation = Vector3.new(-105, 0, 90) | |
| 2795 | Part113.Anchored = true | |
| 2796 | Part113.CanCollide = false | |
| 2797 | Part113.FormFactor = Enum.FormFactor.Custom | |
| 2798 | Part113.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2799 | Part113.CFrame = CFrame.new(4.80000019, 2.03705812, -18.7628937, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2800 | Part113.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2801 | Part113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2802 | Part113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2803 | Part113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2804 | Part113.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2805 | Part113.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2806 | Part113.Color = Color3.new(1, 0.690196, 0) | |
| 2807 | Part113.Position = Vector3.new(4.80000019, 2.03705812, -18.7628937) | |
| 2808 | Part113.Orientation = Vector3.new(-75, 180, -90) | |
| 2809 | Part113.Color = Color3.new(1, 0.690196, 0) | |
| 2810 | Part114.Name = "fakeHandleParts" | |
| 2811 | Part114.Parent = Tool0 | |
| 2812 | Part114.BrickColor = BrickColor.new("Dusty Rose")
| |
| 2813 | Part114.Reflectance = 0.10000000149012 | |
| 2814 | Part114.Rotation = Vector3.new(-105, 0, 90) | |
| 2815 | Part114.Anchored = true | |
| 2816 | Part114.CanCollide = false | |
| 2817 | Part114.FormFactor = Enum.FormFactor.Custom | |
| 2818 | Part114.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2819 | Part114.CFrame = CFrame.new(4.80000019, 0.329349995, -19.3405876, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2820 | Part114.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2821 | Part114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2822 | Part114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2823 | Part114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2824 | Part114.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2825 | Part114.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2826 | Part114.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 2827 | Part114.Position = Vector3.new(4.80000019, 0.329349995, -19.3405876) | |
| 2828 | Part114.Orientation = Vector3.new(-75, 180, -90) | |
| 2829 | Part114.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 2830 | Part115.Name = "fakeHandleParts" | |
| 2831 | Part115.Parent = Tool0 | |
| 2832 | Part115.BrickColor = BrickColor.new("Nougat")
| |
| 2833 | Part115.Reflectance = 0.10000000149012 | |
| 2834 | Part115.Rotation = Vector3.new(-105, 0, 90) | |
| 2835 | Part115.Anchored = true | |
| 2836 | Part115.CanCollide = false | |
| 2837 | Part115.FormFactor = Enum.FormFactor.Custom | |
| 2838 | Part115.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2839 | Part115.CFrame = CFrame.new(4.80000019, 0.941721976, -18.9870377, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2840 | Part115.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2841 | Part115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2842 | Part115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2843 | Part115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2844 | Part115.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2845 | Part115.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2846 | Part115.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 2847 | Part115.Position = Vector3.new(4.80000019, 0.941721976, -18.9870377) | |
| 2848 | Part115.Orientation = Vector3.new(-75, 180, -90) | |
| 2849 | Part115.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 2850 | Part116.Name = "fakeHandleParts" | |
| 2851 | Part116.Parent = Tool0 | |
| 2852 | Part116.BrickColor = BrickColor.new("Brown")
| |
| 2853 | Part116.Reflectance = 0.10000000149012 | |
| 2854 | Part116.Rotation = Vector3.new(-105, 0, 90) | |
| 2855 | Part116.Anchored = true | |
| 2856 | Part116.CanCollide = false | |
| 2857 | Part116.FormFactor = Enum.FormFactor.Custom | |
| 2858 | Part116.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2859 | Part116.CFrame = CFrame.new(4.80000019, 1.77823806, -19.7288208, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2860 | Part116.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2861 | Part116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2862 | Part116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2863 | Part116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2864 | Part116.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2865 | Part116.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2866 | Part116.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2867 | Part116.Position = Vector3.new(4.80000019, 1.77823806, -19.7288208) | |
| 2868 | Part116.Orientation = Vector3.new(-75, 180, -90) | |
| 2869 | Part116.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2870 | Part117.Name = "fakeHandleParts" | |
| 2871 | Part117.Parent = Tool0 | |
| 2872 | Part117.BrickColor = BrickColor.new("Cool yellow")
| |
| 2873 | Part117.Reflectance = 0.10000000149012 | |
| 2874 | Part117.Rotation = Vector3.new(-105, 0, 90) | |
| 2875 | Part117.Anchored = true | |
| 2876 | Part117.CanCollide = false | |
| 2877 | Part117.FormFactor = Enum.FormFactor.Custom | |
| 2878 | Part117.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2879 | Part117.CFrame = CFrame.new(4.80000019, 1.42468596, -19.1164474, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2880 | Part117.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2881 | Part117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2882 | Part117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2883 | Part117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2884 | Part117.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2885 | Part117.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2886 | Part117.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 2887 | Part117.Position = Vector3.new(4.80000019, 1.42468596, -19.1164474) | |
| 2888 | Part117.Orientation = Vector3.new(-75, 180, -90) | |
| 2889 | Part117.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 2890 | Part118.Name = "fakeHandleParts" | |
| 2891 | Part118.Parent = Tool0 | |
| 2892 | Part118.BrickColor = BrickColor.new("Brown")
| |
| 2893 | Part118.Reflectance = 0.10000000149012 | |
| 2894 | Part118.Rotation = Vector3.new(-105, 0, 90) | |
| 2895 | Part118.Anchored = true | |
| 2896 | Part118.CanCollide = false | |
| 2897 | Part118.FormFactor = Enum.FormFactor.Custom | |
| 2898 | Part118.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2899 | Part118.CFrame = CFrame.new(4.80000019, 2.45996094, -15.252738, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2900 | Part118.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2901 | Part118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2902 | Part118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2903 | Part118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2904 | Part118.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2905 | Part118.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2906 | Part118.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2907 | Part118.Position = Vector3.new(4.80000019, 2.45996094, -15.252738) | |
| 2908 | Part118.Orientation = Vector3.new(-75, 180, -90) | |
| 2909 | Part118.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2910 | Part119.Name = "fakeHandleParts" | |
| 2911 | Part119.Parent = Tool0 | |
| 2912 | Part119.BrickColor = BrickColor.new("Cool yellow")
| |
| 2913 | Part119.Reflectance = 0.10000000149012 | |
| 2914 | Part119.Rotation = Vector3.new(-105, 0, 90) | |
| 2915 | Part119.Anchored = true | |
| 2916 | Part119.CanCollide = false | |
| 2917 | Part119.FormFactor = Enum.FormFactor.Custom | |
| 2918 | Part119.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2919 | Part119.CFrame = CFrame.new(4.80000019, 3.55529904, -15.0285978, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2920 | Part119.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2921 | Part119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2922 | Part119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2923 | Part119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2924 | Part119.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2925 | Part119.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2926 | Part119.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 2927 | Part119.Position = Vector3.new(4.80000019, 3.55529904, -15.0285978) | |
| 2928 | Part119.Orientation = Vector3.new(-75, 180, -90) | |
| 2929 | Part119.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 2930 | Part120.Name = "fakeHandleParts" | |
| 2931 | Part120.Parent = Tool0 | |
| 2932 | Part120.BrickColor = BrickColor.new("Bright red")
| |
| 2933 | Part120.Reflectance = 0.10000000149012 | |
| 2934 | Part120.Rotation = Vector3.new(-105, 0, 90) | |
| 2935 | Part120.Anchored = true | |
| 2936 | Part120.CanCollide = false | |
| 2937 | Part120.FormFactor = Enum.FormFactor.Custom | |
| 2938 | Part120.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2939 | Part120.CFrame = CFrame.new(4.80000019, 2.77883911, -17.9263763, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2940 | Part120.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2941 | Part120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2942 | Part120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2943 | Part120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2944 | Part120.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2945 | Part120.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2946 | Part120.Color = Color3.new(0.768627, 0.156863, 0.109804) | |
| 2947 | Part120.Position = Vector3.new(4.80000019, 2.77883911, -17.9263763) | |
| 2948 | Part120.Orientation = Vector3.new(-75, 180, -90) | |
| 2949 | Part120.Color = Color3.new(0.768627, 0.156863, 0.109804) | |
| 2950 | Part121.Name = "fakeHandleParts" | |
| 2951 | Part121.Parent = Tool0 | |
| 2952 | Part121.BrickColor = BrickColor.new("Dusty Rose")
| |
| 2953 | Part121.Reflectance = 0.10000000149012 | |
| 2954 | Part121.Rotation = Vector3.new(-105, 0, 90) | |
| 2955 | Part121.Anchored = true | |
| 2956 | Part121.CanCollide = false | |
| 2957 | Part121.FormFactor = Enum.FormFactor.Custom | |
| 2958 | Part121.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2959 | Part121.CFrame = CFrame.new(4.80000019, 2.20114112, -16.218668, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2960 | Part121.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2961 | Part121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2962 | Part121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2963 | Part121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2964 | Part121.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2965 | Part121.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2966 | Part121.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 2967 | Part121.Position = Vector3.new(4.80000019, 2.20114112, -16.218668) | |
| 2968 | Part121.Orientation = Vector3.new(-75, 180, -90) | |
| 2969 | Part121.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 2970 | Part122.Name = "fakeHandleParts" | |
| 2971 | Part122.Parent = Tool0 | |
| 2972 | Part122.BrickColor = BrickColor.new("Brown")
| |
| 2973 | Part122.Reflectance = 0.10000000149012 | |
| 2974 | Part122.Rotation = Vector3.new(-105, 0, 90) | |
| 2975 | Part122.Anchored = true | |
| 2976 | Part122.CanCollide = false | |
| 2977 | Part122.FormFactor = Enum.FormFactor.Custom | |
| 2978 | Part122.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2979 | Part122.CFrame = CFrame.new(4.7999959, 2.58937097, -14.7697716, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 2980 | Part122.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2981 | Part122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2982 | Part122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2983 | Part122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2984 | Part122.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2985 | Part122.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2986 | Part122.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2987 | Part122.Position = Vector3.new(4.7999959, 2.58937097, -14.7697716) | |
| 2988 | Part122.Orientation = Vector3.new(-75, 180, -90) | |
| 2989 | Part122.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 2990 | Part123.Name = "fakeHandleParts" | |
| 2991 | Part123.Parent = Tool0 | |
| 2992 | Part123.BrickColor = BrickColor.new("Bright red")
| |
| 2993 | Part123.Reflectance = 0.10000000149012 | |
| 2994 | Part123.Rotation = Vector3.new(-105, 0, 90) | |
| 2995 | Part123.Anchored = true | |
| 2996 | Part123.CanCollide = false | |
| 2997 | Part123.FormFactor = Enum.FormFactor.Custom | |
| 2998 | Part123.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 2999 | Part123.CFrame = CFrame.new(4.80000019, 2.55469704, -16.8310432, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3000 | Part123.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3001 | Part123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3002 | Part123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3003 | Part123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3004 | Part123.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3005 | Part123.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3006 | Part123.Color = Color3.new(0.768627, 0.156863, 0.109804) | |
| 3007 | Part123.Position = Vector3.new(4.80000019, 2.55469704, -16.8310432) | |
| 3008 | Part123.Orientation = Vector3.new(-75, 180, -90) | |
| 3009 | Part123.Color = Color3.new(0.768627, 0.156863, 0.109804) | |
| 3010 | Part124.Name = "fakeHandleParts" | |
| 3011 | Part124.Parent = Tool0 | |
| 3012 | Part124.BrickColor = BrickColor.new("Brown")
| |
| 3013 | Part124.Reflectance = 0.10000000149012 | |
| 3014 | Part124.Rotation = Vector3.new(-105, 0, 90) | |
| 3015 | Part124.Anchored = true | |
| 3016 | Part124.CanCollide = false | |
| 3017 | Part124.FormFactor = Enum.FormFactor.Custom | |
| 3018 | Part124.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3019 | Part124.CFrame = CFrame.new(4.80000019, 3.68470693, -14.5456305, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3020 | Part124.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3021 | Part124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3022 | Part124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3023 | Part124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3024 | Part124.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3025 | Part124.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3026 | Part124.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3027 | Part124.Position = Vector3.new(4.80000019, 3.68470693, -14.5456305) | |
| 3028 | Part124.Orientation = Vector3.new(-75, 180, -90) | |
| 3029 | Part124.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3030 | Part125.Name = "fakeHandleParts" | |
| 3031 | Part125.Parent = Tool0 | |
| 3032 | Part125.BrickColor = BrickColor.new("Brown")
| |
| 3033 | Part125.Reflectance = 0.10000000149012 | |
| 3034 | Part125.Rotation = Vector3.new(-105, 0, 90) | |
| 3035 | Part125.Anchored = true | |
| 3036 | Part125.CanCollide = false | |
| 3037 | Part125.FormFactor = Enum.FormFactor.Custom | |
| 3038 | Part125.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3039 | Part125.CFrame = CFrame.new(4.80000019, 2.42528605, -17.3140068, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3040 | Part125.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3041 | Part125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3042 | Part125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3043 | Part125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3044 | Part125.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3045 | Part125.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3046 | Part125.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3047 | Part125.Position = Vector3.new(4.80000019, 2.42528605, -17.3140068) | |
| 3048 | Part125.Orientation = Vector3.new(-75, 180, -90) | |
| 3049 | Part125.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3050 | Part126.Name = "fakeHandleParts" | |
| 3051 | Part126.Parent = Tool0 | |
| 3052 | Part126.BrickColor = BrickColor.new("Brown")
| |
| 3053 | Part126.Reflectance = 0.10000000149012 | |
| 3054 | Part126.Rotation = Vector3.new(-105, 0, 90) | |
| 3055 | Part126.Anchored = true | |
| 3056 | Part126.CanCollide = false | |
| 3057 | Part126.FormFactor = Enum.FormFactor.Custom | |
| 3058 | Part126.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3059 | Part126.CFrame = CFrame.new(4.80000019, 2.68410611, -16.3480778, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3060 | Part126.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3061 | Part126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3062 | Part126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3063 | Part126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3064 | Part126.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3065 | Part126.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3066 | Part126.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3067 | Part126.Position = Vector3.new(4.80000019, 2.68410611, -16.3480778) | |
| 3068 | Part126.Orientation = Vector3.new(-75, 180, -90) | |
| 3069 | Part126.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3070 | Part127.Name = "fakeHandleParts" | |
| 3071 | Part127.Parent = Tool0 | |
| 3072 | Part127.BrickColor = BrickColor.new("Dusty Rose")
| |
| 3073 | Part127.Reflectance = 0.10000000149012 | |
| 3074 | Part127.Rotation = Vector3.new(-105, 0, 90) | |
| 3075 | Part127.Anchored = true | |
| 3076 | Part127.CanCollide = false | |
| 3077 | Part127.FormFactor = Enum.FormFactor.Custom | |
| 3078 | Part127.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3079 | Part127.CFrame = CFrame.new(4.80000019, 3.42588806, -15.5115623, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3080 | Part127.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3081 | Part127.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3082 | Part127.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3083 | Part127.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3084 | Part127.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3085 | Part127.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3086 | Part127.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3087 | Part127.Position = Vector3.new(4.80000019, 3.42588806, -15.5115623) | |
| 3088 | Part127.Orientation = Vector3.new(-75, 180, -90) | |
| 3089 | Part127.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3090 | Part128.Name = "fakeHandleParts" | |
| 3091 | Part128.Parent = Tool0 | |
| 3092 | Part128.BrickColor = BrickColor.new("Dusty Rose")
| |
| 3093 | Part128.Reflectance = 0.10000000149012 | |
| 3094 | Part128.Rotation = Vector3.new(-105, 0, 90) | |
| 3095 | Part128.Anchored = true | |
| 3096 | Part128.CanCollide = false | |
| 3097 | Part128.FormFactor = Enum.FormFactor.Custom | |
| 3098 | Part128.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3099 | Part128.CFrame = CFrame.new(4.80000019, 4.03826094, -15.1580076, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3100 | Part128.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3101 | Part128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3102 | Part128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3103 | Part128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3104 | Part128.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3105 | Part128.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3106 | Part128.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3107 | Part128.Position = Vector3.new(4.80000019, 4.03826094, -15.1580076) | |
| 3108 | Part128.Orientation = Vector3.new(-75, 180, -90) | |
| 3109 | Part128.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3110 | Part129.Name = "fakeHandleParts" | |
| 3111 | Part129.Parent = Tool0 | |
| 3112 | Part129.BrickColor = BrickColor.new("Dusty Rose")
| |
| 3113 | Part129.Reflectance = 0.10000000149012 | |
| 3114 | Part129.Rotation = Vector3.new(-105, 0, 90) | |
| 3115 | Part129.Anchored = true | |
| 3116 | Part129.CanCollide = false | |
| 3117 | Part129.FormFactor = Enum.FormFactor.Custom | |
| 3118 | Part129.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3119 | Part129.CFrame = CFrame.new(4.80000019, 1.10580695, -16.442812, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3120 | Part129.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3121 | Part129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3122 | Part129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3123 | Part129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3124 | Part129.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3125 | Part129.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3126 | Part129.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3127 | Part129.Position = Vector3.new(4.80000019, 1.10580695, -16.442812) | |
| 3128 | Part129.Orientation = Vector3.new(-75, 180, -90) | |
| 3129 | Part129.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3130 | Part130.Name = "fakeHandleParts" | |
| 3131 | Part130.Parent = Tool0 | |
| 3132 | Part130.BrickColor = BrickColor.new("Brown")
| |
| 3133 | Part130.Reflectance = 0.10000000149012 | |
| 3134 | Part130.Rotation = Vector3.new(-105, 0, 90) | |
| 3135 | Part130.Anchored = true | |
| 3136 | Part130.CanCollide = false | |
| 3137 | Part130.FormFactor = Enum.FormFactor.Custom | |
| 3138 | Part130.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3139 | Part130.CFrame = CFrame.new(4.80000019, 0.976396978, -16.9257755, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3140 | Part130.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3141 | Part130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3142 | Part130.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3143 | Part130.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3144 | Part130.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3145 | Part130.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3146 | Part130.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3147 | Part130.Position = Vector3.new(4.80000019, 0.976396978, -16.9257755) | |
| 3148 | Part130.Orientation = Vector3.new(-75, 180, -90) | |
| 3149 | Part130.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3150 | Part131.Name = "fakeHandleParts" | |
| 3151 | Part131.Parent = Tool0 | |
| 3152 | Part131.BrickColor = BrickColor.new("Dusty Rose")
| |
| 3153 | Part131.Reflectance = 0.10000000149012 | |
| 3154 | Part131.Rotation = Vector3.new(-105, 0, 90) | |
| 3155 | Part131.Anchored = true | |
| 3156 | Part131.CanCollide = false | |
| 3157 | Part131.FormFactor = Enum.FormFactor.Custom | |
| 3158 | Part131.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3159 | Part131.CFrame = CFrame.new(4.80000019, 3.072335, -14.8991842, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3160 | Part131.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3161 | Part131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3162 | Part131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3163 | Part131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3164 | Part131.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3165 | Part131.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3166 | Part131.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3167 | Part131.Position = Vector3.new(4.80000019, 3.072335, -14.8991842) | |
| 3168 | Part131.Orientation = Vector3.new(-75, 180, -90) | |
| 3169 | Part131.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3170 | Part132.Name = "fakeHandleParts" | |
| 3171 | Part132.Parent = Tool0 | |
| 3172 | Part132.BrickColor = BrickColor.new("Olive")
| |
| 3173 | Part132.Reflectance = 0.10000000149012 | |
| 3174 | Part132.Rotation = Vector3.new(-105, 0, 90) | |
| 3175 | Part132.Anchored = true | |
| 3176 | Part132.CanCollide = false | |
| 3177 | Part132.FormFactor = Enum.FormFactor.Custom | |
| 3178 | Part132.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3179 | Part132.CFrame = CFrame.new(4.80000019, 1.58877099, -16.5722218, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3180 | Part132.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3181 | Part132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3182 | Part132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3183 | Part132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3184 | Part132.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3185 | Part132.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3186 | Part132.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 3187 | Part132.Position = Vector3.new(4.80000019, 1.58877099, -16.5722218) | |
| 3188 | Part132.Orientation = Vector3.new(-75, 180, -90) | |
| 3189 | Part132.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 3190 | Part133.Name = "fakeHandleParts" | |
| 3191 | Part133.Parent = Tool0 | |
| 3192 | Part133.BrickColor = BrickColor.new("Brown")
| |
| 3193 | Part133.Reflectance = 0.10000000149012 | |
| 3194 | Part133.Rotation = Vector3.new(-105, 0, 90) | |
| 3195 | Part133.Anchored = true | |
| 3196 | Part133.CanCollide = false | |
| 3197 | Part133.FormFactor = Enum.FormFactor.Custom | |
| 3198 | Part133.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3199 | Part133.CFrame = CFrame.new(4.80000019, 2.07173204, -16.7016315, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3200 | Part133.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3201 | Part133.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3202 | Part133.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3203 | Part133.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3204 | Part133.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3205 | Part133.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3206 | Part133.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3207 | Part133.Position = Vector3.new(4.80000019, 2.07173204, -16.7016315) | |
| 3208 | Part133.Orientation = Vector3.new(-75, 180, -90) | |
| 3209 | Part133.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3210 | Part134.Name = "fakeHandleParts" | |
| 3211 | Part134.Parent = Tool0 | |
| 3212 | Part134.BrickColor = BrickColor.new("Lavender")
| |
| 3213 | Part134.Reflectance = 0.10000000149012 | |
| 3214 | Part134.Rotation = Vector3.new(-105, 0, 90) | |
| 3215 | Part134.Anchored = true | |
| 3216 | Part134.CanCollide = false | |
| 3217 | Part134.FormFactor = Enum.FormFactor.Custom | |
| 3218 | Part134.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3219 | Part134.CFrame = CFrame.new(4.80000019, 1.71817994, -16.0892582, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3220 | Part134.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3221 | Part134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3222 | Part134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3223 | Part134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3224 | Part134.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3225 | Part134.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3226 | Part134.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 3227 | Part134.Position = Vector3.new(4.80000019, 1.71817994, -16.0892582) | |
| 3228 | Part134.Orientation = Vector3.new(-75, 180, -90) | |
| 3229 | Part134.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 3230 | Part135.Name = "fakeHandleParts" | |
| 3231 | Part135.Parent = Tool0 | |
| 3232 | Part135.BrickColor = BrickColor.new("Olive")
| |
| 3233 | Part135.Reflectance = 0.10000000149012 | |
| 3234 | Part135.Rotation = Vector3.new(-105, 0, 90) | |
| 3235 | Part135.Anchored = true | |
| 3236 | Part135.CanCollide = false | |
| 3237 | Part135.FormFactor = Enum.FormFactor.Custom | |
| 3238 | Part135.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3239 | Part135.CFrame = CFrame.new(4.80000019, 2.94292498, -15.3821516, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3240 | Part135.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3241 | Part135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3242 | Part135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3243 | Part135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3244 | Part135.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3245 | Part135.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3246 | Part135.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 3247 | Part135.Position = Vector3.new(4.80000019, 2.94292498, -15.3821516) | |
| 3248 | Part135.Orientation = Vector3.new(-75, 180, -90) | |
| 3249 | Part135.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 3250 | Part136.Name = "fakeHandleParts" | |
| 3251 | Part136.Parent = Tool0 | |
| 3252 | Part136.BrickColor = BrickColor.new("Brown")
| |
| 3253 | Part136.Reflectance = 0.10000000149012 | |
| 3254 | Part136.Rotation = Vector3.new(-105, 0, 90) | |
| 3255 | Part136.Anchored = true | |
| 3256 | Part136.CanCollide = false | |
| 3257 | Part136.FormFactor = Enum.FormFactor.Custom | |
| 3258 | Part136.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3259 | Part136.CFrame = CFrame.new(4.80000019, 2.8135159, -15.8651142, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3260 | Part136.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3261 | Part136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3262 | Part136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3263 | Part136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3264 | Part136.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3265 | Part136.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3266 | Part136.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3267 | Part136.Position = Vector3.new(4.80000019, 2.8135159, -15.8651142) | |
| 3268 | Part136.Orientation = Vector3.new(-75, 180, -90) | |
| 3269 | Part136.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3270 | Part137.Name = "fakeHandleParts" | |
| 3271 | Part137.Parent = Tool0 | |
| 3272 | Part137.BrickColor = BrickColor.new("Dusty Rose")
| |
| 3273 | Part137.Reflectance = 0.10000000149012 | |
| 3274 | Part137.Rotation = Vector3.new(-105, 0, 90) | |
| 3275 | Part137.Anchored = true | |
| 3276 | Part137.CanCollide = false | |
| 3277 | Part137.FormFactor = Enum.FormFactor.Custom | |
| 3278 | Part137.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3279 | Part137.CFrame = CFrame.new(4.80000019, 2.29587793, -17.7969704, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3280 | Part137.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3281 | Part137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3282 | Part137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3283 | Part137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3284 | Part137.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3285 | Part137.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3286 | Part137.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3287 | Part137.Position = Vector3.new(4.80000019, 2.29587793, -17.7969704) | |
| 3288 | Part137.Orientation = Vector3.new(-75, 180, -90) | |
| 3289 | Part137.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 3290 | Part138.Name = "fakeHandleParts" | |
| 3291 | Part138.Parent = Tool0 | |
| 3292 | Part138.BrickColor = BrickColor.new("Brown")
| |
| 3293 | Part138.Reflectance = 0.10000000149012 | |
| 3294 | Part138.Rotation = Vector3.new(-105, 0, 90) | |
| 3295 | Part138.Anchored = true | |
| 3296 | Part138.CanCollide = false | |
| 3297 | Part138.FormFactor = Enum.FormFactor.Custom | |
| 3298 | Part138.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3299 | Part138.CFrame = CFrame.new(4.80000019, 1.45936, -17.0551834, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3300 | Part138.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3301 | Part138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3302 | Part138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3303 | Part138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3304 | Part138.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3305 | Part138.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3306 | Part138.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3307 | Part138.Position = Vector3.new(4.80000019, 1.45936, -17.0551834) | |
| 3308 | Part138.Orientation = Vector3.new(-75, 180, -90) | |
| 3309 | Part138.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3310 | Part139.Name = "fakeHandleParts" | |
| 3311 | Part139.Parent = Tool0 | |
| 3312 | Part139.BrickColor = BrickColor.new("Lavender")
| |
| 3313 | Part139.Reflectance = 0.10000000149012 | |
| 3314 | Part139.Rotation = Vector3.new(-105, 0, 90) | |
| 3315 | Part139.Anchored = true | |
| 3316 | Part139.CanCollide = false | |
| 3317 | Part139.FormFactor = Enum.FormFactor.Custom | |
| 3318 | Part139.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3319 | Part139.CFrame = CFrame.new(4.80000019, 1.68350506, -18.1505241, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3320 | Part139.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3321 | Part139.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3322 | Part139.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3323 | Part139.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3324 | Part139.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3325 | Part139.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3326 | Part139.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 3327 | Part139.Position = Vector3.new(4.80000019, 1.68350506, -18.1505241) | |
| 3328 | Part139.Orientation = Vector3.new(-75, 180, -90) | |
| 3329 | Part139.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 3330 | Part140.Name = "fakeHandleParts" | |
| 3331 | Part140.Parent = Tool0 | |
| 3332 | Part140.BrickColor = BrickColor.new("Dark orange")
| |
| 3333 | Part140.Reflectance = 0.10000000149012 | |
| 3334 | Part140.Rotation = Vector3.new(-105, 0, 90) | |
| 3335 | Part140.Anchored = true | |
| 3336 | Part140.CanCollide = false | |
| 3337 | Part140.FormFactor = Enum.FormFactor.Custom | |
| 3338 | Part140.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3339 | Part140.CFrame = CFrame.new(4.80000401, 2.16646791, -18.2799301, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3340 | Part140.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3341 | Part140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3342 | Part140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3343 | Part140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3344 | Part140.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3345 | Part140.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3346 | Part140.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 3347 | Part140.Position = Vector3.new(4.80000401, 2.16646791, -18.2799301) | |
| 3348 | Part140.Orientation = Vector3.new(-75, 180, -90) | |
| 3349 | Part140.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 3350 | Part141.Name = "fakeHandleParts" | |
| 3351 | Part141.Parent = Tool0 | |
| 3352 | Part141.BrickColor = BrickColor.new("Brown")
| |
| 3353 | Part141.Reflectance = 0.10000000149012 | |
| 3354 | Part141.Rotation = Vector3.new(-105, 0, 90) | |
| 3355 | Part141.Anchored = true | |
| 3356 | Part141.CanCollide = false | |
| 3357 | Part141.FormFactor = Enum.FormFactor.Custom | |
| 3358 | Part141.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3359 | Part141.CFrame = CFrame.new(4.80000019, 4.16766977, -14.675046, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3360 | Part141.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3361 | Part141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3362 | Part141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3363 | Part141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3364 | Part141.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3365 | Part141.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3366 | Part141.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3367 | Part141.Position = Vector3.new(4.80000019, 4.16766977, -14.675046) | |
| 3368 | Part141.Orientation = Vector3.new(-75, 180, -90) | |
| 3369 | Part141.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 3370 | Part142.Name = "BladeParts" | |
| 3371 | Part142.Parent = Tool0 | |
| 3372 | Part142.BrickColor = BrickColor.new("Earth green")
| |
| 3373 | Part142.Reflectance = 0.10000000149012 | |
| 3374 | Part142.Rotation = Vector3.new(-105, 0, 90) | |
| 3375 | Part142.Anchored = true | |
| 3376 | Part142.CanCollide = false | |
| 3377 | Part142.FormFactor = Enum.FormFactor.Custom | |
| 3378 | Part142.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3379 | Part142.CFrame = CFrame.new(4.80000019, 12.1885681, -13.7184124, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3380 | Part142.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3381 | Part142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3382 | Part142.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3383 | Part142.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3384 | Part142.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3385 | Part142.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3386 | Part142.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 3387 | Part142.Position = Vector3.new(4.80000019, 12.1885681, -13.7184124) | |
| 3388 | Part142.Orientation = Vector3.new(-75, 180, -90) | |
| 3389 | Part142.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 3390 | Part143.Name = "BladeParts" | |
| 3391 | Part143.Parent = Tool0 | |
| 3392 | Part143.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 3393 | Part143.Reflectance = 0.10000000149012 | |
| 3394 | Part143.Rotation = Vector3.new(-105, 0, 90) | |
| 3395 | Part143.Anchored = true | |
| 3396 | Part143.CanCollide = false | |
| 3397 | Part143.FormFactor = Enum.FormFactor.Custom | |
| 3398 | Part143.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3399 | Part143.CFrame = CFrame.new(4.80000019, 11.2226477, -13.45959, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3400 | Part143.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3401 | Part143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3402 | Part143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3403 | Part143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3404 | Part143.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3405 | Part143.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3406 | Part143.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 3407 | Part143.Position = Vector3.new(4.80000019, 11.2226477, -13.45959) | |
| 3408 | Part143.Orientation = Vector3.new(-75, 180, -90) | |
| 3409 | Part143.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 3410 | Part144.Name = "BladeParts" | |
| 3411 | Part144.Parent = Tool0 | |
| 3412 | Part144.BrickColor = BrickColor.new("Bright green")
| |
| 3413 | Part144.Reflectance = 0.10000000149012 | |
| 3414 | Part144.Rotation = Vector3.new(-105, 0, 90) | |
| 3415 | Part144.Anchored = true | |
| 3416 | Part144.CanCollide = false | |
| 3417 | Part144.FormFactor = Enum.FormFactor.Custom | |
| 3418 | Part144.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3419 | Part144.CFrame = CFrame.new(4.80000019, 11.7056084, -13.5889997, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3420 | Part144.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3421 | Part144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3422 | Part144.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3423 | Part144.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3424 | Part144.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3425 | Part144.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3426 | Part144.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 3427 | Part144.Position = Vector3.new(4.80000019, 11.7056084, -13.5889997) | |
| 3428 | Part144.Orientation = Vector3.new(-75, 180, -90) | |
| 3429 | Part144.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 3430 | Part145.Name = "BladeParts" | |
| 3431 | Part145.Parent = Tool0 | |
| 3432 | Part145.BrickColor = BrickColor.new("Dark orange")
| |
| 3433 | Part145.Reflectance = 0.10000000149012 | |
| 3434 | Part145.Rotation = Vector3.new(-105, 0, 90) | |
| 3435 | Part145.Anchored = true | |
| 3436 | Part145.CanCollide = false | |
| 3437 | Part145.FormFactor = Enum.FormFactor.Custom | |
| 3438 | Part145.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3439 | Part145.CFrame = CFrame.new(4.80000019, 10.1273079, -13.6837339, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3440 | Part145.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3441 | Part145.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3442 | Part145.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3443 | Part145.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3444 | Part145.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3445 | Part145.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3446 | Part145.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 3447 | Part145.Position = Vector3.new(4.80000019, 10.1273079, -13.6837339) | |
| 3448 | Part145.Orientation = Vector3.new(-75, 180, -90) | |
| 3449 | Part145.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 3450 | Part146.Name = "BladeParts" | |
| 3451 | Part146.Parent = Tool0 | |
| 3452 | Part146.BrickColor = BrickColor.new("Dark orange")
| |
| 3453 | Part146.Reflectance = 0.10000000149012 | |
| 3454 | Part146.Rotation = Vector3.new(-105, 0, 90) | |
| 3455 | Part146.Anchored = true | |
| 3456 | Part146.CanCollide = false | |
| 3457 | Part146.FormFactor = Enum.FormFactor.Custom | |
| 3458 | Part146.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3459 | Part146.CFrame = CFrame.new(4.80000019, 11.4814615, -12.4936638, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3460 | Part146.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3461 | Part146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3462 | Part146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3463 | Part146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3464 | Part146.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3465 | Part146.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3466 | Part146.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 3467 | Part146.Position = Vector3.new(4.80000019, 11.4814615, -12.4936638) | |
| 3468 | Part146.Orientation = Vector3.new(-75, 180, -90) | |
| 3469 | Part146.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 3470 | Part147.Name = "BladeParts" | |
| 3471 | Part147.Parent = Tool0 | |
| 3472 | Part147.BrickColor = BrickColor.new("Dark orange")
| |
| 3473 | Part147.Reflectance = 0.10000000149012 | |
| 3474 | Part147.Rotation = Vector3.new(-105, 0, 90) | |
| 3475 | Part147.Anchored = true | |
| 3476 | Part147.CanCollide = false | |
| 3477 | Part147.FormFactor = Enum.FormFactor.Custom | |
| 3478 | Part147.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3479 | Part147.CFrame = CFrame.new(4.80000019, 10.7396822, -13.3301744, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3480 | Part147.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3481 | Part147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3482 | Part147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3483 | Part147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3484 | Part147.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3485 | Part147.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3486 | Part147.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 3487 | Part147.Position = Vector3.new(4.80000019, 10.7396822, -13.3301744) | |
| 3488 | Part147.Orientation = Vector3.new(-75, 180, -90) | |
| 3489 | Part147.Color = Color3.new(0.627451, 0.372549, 0.207843) | |
| 3490 | Part148.Name = "BladeParts" | |
| 3491 | Part148.Parent = Tool0 | |
| 3492 | Part148.BrickColor = BrickColor.new("Br. yellowish green")
| |
| 3493 | Part148.Reflectance = 0.10000000149012 | |
| 3494 | Part148.Rotation = Vector3.new(-105, 0, 90) | |
| 3495 | Part148.Anchored = true | |
| 3496 | Part148.CanCollide = false | |
| 3497 | Part148.FormFactor = Enum.FormFactor.Custom | |
| 3498 | Part148.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3499 | Part148.CFrame = CFrame.new(4.80000019, 12.3179798, -13.235446, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3500 | Part148.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3501 | Part148.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3502 | Part148.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3503 | Part148.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3504 | Part148.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3505 | Part148.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3506 | Part148.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 3507 | Part148.Position = Vector3.new(4.80000019, 12.3179798, -13.235446) | |
| 3508 | Part148.Orientation = Vector3.new(-75, 180, -90) | |
| 3509 | Part148.Color = Color3.new(0.643137, 0.741176, 0.278431) | |
| 3510 | Part149.Name = "BladeParts" | |
| 3511 | Part149.Parent = Tool0 | |
| 3512 | Part149.BrickColor = BrickColor.new("Deep orange")
| |
| 3513 | Part149.Reflectance = 0.10000000149012 | |
| 3514 | Part149.Rotation = Vector3.new(-105, 0, 90) | |
| 3515 | Part149.Anchored = true | |
| 3516 | Part149.CanCollide = false | |
| 3517 | Part149.FormFactor = Enum.FormFactor.Custom | |
| 3518 | Part149.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3519 | Part149.CFrame = CFrame.new(4.80000019, 11.8350143, -13.1060305, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3520 | Part149.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3521 | Part149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3522 | Part149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3523 | Part149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3524 | Part149.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3525 | Part149.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3526 | Part149.Color = Color3.new(1, 0.690196, 0) | |
| 3527 | Part149.Position = Vector3.new(4.80000019, 11.8350143, -13.1060305) | |
| 3528 | Part149.Orientation = Vector3.new(-75, 180, -90) | |
| 3529 | Part149.Color = Color3.new(1, 0.690196, 0) | |
| 3530 | Part150.Name = "BladeParts" | |
| 3531 | Part150.Parent = Tool0 | |
| 3532 | Part150.BrickColor = BrickColor.new("Deep blue")
| |
| 3533 | Part150.Reflectance = 0.10000000149012 | |
| 3534 | Part150.Rotation = Vector3.new(-105, 0, 90) | |
| 3535 | Part150.Anchored = true | |
| 3536 | Part150.CanCollide = false | |
| 3537 | Part150.FormFactor = Enum.FormFactor.Custom | |
| 3538 | Part150.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3539 | Part150.CFrame = CFrame.new(4.80000019, 5.32306385, -18.0904617, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3540 | Part150.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3541 | Part150.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3542 | Part150.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3543 | Part150.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3544 | Part150.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3545 | Part150.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3546 | Part150.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 3547 | Part150.Position = Vector3.new(4.80000019, 5.32306385, -18.0904617) | |
| 3548 | Part150.Orientation = Vector3.new(-75, 180, -90) | |
| 3549 | Part150.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 3550 | Part151.Name = "fakeHandleParts" | |
| 3551 | Part151.Parent = Tool0 | |
| 3552 | Part151.BrickColor = BrickColor.new("Lavender")
| |
| 3553 | Part151.Reflectance = 0.10000000149012 | |
| 3554 | Part151.Rotation = Vector3.new(-105, 0, 90) | |
| 3555 | Part151.Anchored = true | |
| 3556 | Part151.CanCollide = false | |
| 3557 | Part151.FormFactor = Enum.FormFactor.Custom | |
| 3558 | Part151.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3559 | Part151.CFrame = CFrame.new(4.80000019, 5.06424522, -19.0563812, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3560 | Part151.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3561 | Part151.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3562 | Part151.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3563 | Part151.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3564 | Part151.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3565 | Part151.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3566 | Part151.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 3567 | Part151.Position = Vector3.new(4.80000019, 5.06424522, -19.0563812) | |
| 3568 | Part151.Orientation = Vector3.new(-75, 180, -90) | |
| 3569 | Part151.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 3570 | Part152.Name = "BladeParts" | |
| 3571 | Part152.Parent = Tool0 | |
| 3572 | Part152.BrickColor = BrickColor.new("Bright blue")
| |
| 3573 | Part152.Reflectance = 0.10000000149012 | |
| 3574 | Part152.Rotation = Vector3.new(-105, 0, 90) | |
| 3575 | Part152.Anchored = true | |
| 3576 | Part152.CanCollide = false | |
| 3577 | Part152.FormFactor = Enum.FormFactor.Custom | |
| 3578 | Part152.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3579 | Part152.CFrame = CFrame.new(4.80000019, 4.84010077, -17.9610519, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3580 | Part152.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3581 | Part152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3582 | Part152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3583 | Part152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3584 | Part152.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3585 | Part152.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3586 | Part152.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3587 | Part152.Position = Vector3.new(4.80000019, 4.84010077, -17.9610519) | |
| 3588 | Part152.Orientation = Vector3.new(-75, 180, -90) | |
| 3589 | Part152.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3590 | Part153.Name = "fakeHandleParts" | |
| 3591 | Part153.Parent = Tool0 | |
| 3592 | Part153.BrickColor = BrickColor.new("Lavender")
| |
| 3593 | Part153.Reflectance = 0.10000000149012 | |
| 3594 | Part153.Rotation = Vector3.new(-105, 0, 90) | |
| 3595 | Part153.Anchored = true | |
| 3596 | Part153.CanCollide = false | |
| 3597 | Part153.FormFactor = Enum.FormFactor.Custom | |
| 3598 | Part153.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3599 | Part153.CFrame = CFrame.new(4.80000019, 4.71069098, -18.4440155, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3600 | Part153.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3601 | Part153.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3602 | Part153.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3603 | Part153.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3604 | Part153.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3605 | Part153.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3606 | Part153.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 3607 | Part153.Position = Vector3.new(4.80000019, 4.71069098, -18.4440155) | |
| 3608 | Part153.Orientation = Vector3.new(-75, 180, -90) | |
| 3609 | Part153.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 3610 | Part154.Name = "BladeParts" | |
| 3611 | Part154.Parent = Tool0 | |
| 3612 | Part154.BrickColor = BrickColor.new("Deep blue")
| |
| 3613 | Part154.Reflectance = 0.10000000149012 | |
| 3614 | Part154.Rotation = Vector3.new(-105, 0, 90) | |
| 3615 | Part154.Anchored = true | |
| 3616 | Part154.CanCollide = false | |
| 3617 | Part154.FormFactor = Enum.FormFactor.Custom | |
| 3618 | Part154.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3619 | Part154.CFrame = CFrame.new(4.80000019, 5.93543386, -17.736908, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3620 | Part154.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3621 | Part154.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3622 | Part154.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3623 | Part154.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3624 | Part154.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3625 | Part154.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3626 | Part154.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 3627 | Part154.Position = Vector3.new(4.80000019, 5.93543386, -17.736908) | |
| 3628 | Part154.Orientation = Vector3.new(-75, 180, -90) | |
| 3629 | Part154.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 3630 | Part155.Name = "BladeParts" | |
| 3631 | Part155.Parent = Tool0 | |
| 3632 | Part155.BrickColor = BrickColor.new("Bright bluish green")
| |
| 3633 | Part155.Reflectance = 0.10000000149012 | |
| 3634 | Part155.Rotation = Vector3.new(-105, 0, 90) | |
| 3635 | Part155.Anchored = true | |
| 3636 | Part155.CanCollide = false | |
| 3637 | Part155.FormFactor = Enum.FormFactor.Custom | |
| 3638 | Part155.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3639 | Part155.CFrame = CFrame.new(4.80000019, 10.3514519, -14.7790718, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3640 | Part155.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3641 | Part155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3642 | Part155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3643 | Part155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3644 | Part155.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3645 | Part155.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3646 | Part155.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3647 | Part155.Position = Vector3.new(4.80000019, 10.3514519, -14.7790718) | |
| 3648 | Part155.Orientation = Vector3.new(-75, 180, -90) | |
| 3649 | Part155.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3650 | Part156.Name = "BladeParts" | |
| 3651 | Part156.Parent = Tool0 | |
| 3652 | Part156.BrickColor = BrickColor.new("Earth green")
| |
| 3653 | Part156.Reflectance = 0.10000000149012 | |
| 3654 | Part156.Rotation = Vector3.new(-105, 0, 90) | |
| 3655 | Part156.Anchored = true | |
| 3656 | Part156.CanCollide = false | |
| 3657 | Part156.FormFactor = Enum.FormFactor.Custom | |
| 3658 | Part156.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3659 | Part156.CFrame = CFrame.new(4.80000019, 8.77315426, -14.8738041, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3660 | Part156.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3661 | Part156.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3662 | Part156.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3663 | Part156.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3664 | Part156.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3665 | Part156.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3666 | Part156.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 3667 | Part156.Position = Vector3.new(4.80000019, 8.77315426, -14.8738041) | |
| 3668 | Part156.Orientation = Vector3.new(-75, 180, -90) | |
| 3669 | Part156.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 3670 | Part157.Name = "fakeHandleParts" | |
| 3671 | Part157.Parent = Tool0 | |
| 3672 | Part157.BrickColor = BrickColor.new("Olive")
| |
| 3673 | Part157.Reflectance = 0.10000000149012 | |
| 3674 | Part157.Rotation = Vector3.new(-105, 0, 90) | |
| 3675 | Part157.Anchored = true | |
| 3676 | Part157.CanCollide = false | |
| 3677 | Part157.FormFactor = Enum.FormFactor.Custom | |
| 3678 | Part157.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3679 | Part157.CFrame = CFrame.new(4.80000019, 4.58128214, -18.9269791, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3680 | Part157.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3681 | Part157.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3682 | Part157.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3683 | Part157.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3684 | Part157.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3685 | Part157.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3686 | Part157.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 3687 | Part157.Position = Vector3.new(4.80000019, 4.58128214, -18.9269791) | |
| 3688 | Part157.Orientation = Vector3.new(-75, 180, -90) | |
| 3689 | Part157.Color = Color3.new(0.756863, 0.745098, 0.258824) | |
| 3690 | Part158.Name = "BladeParts" | |
| 3691 | Part158.Parent = Tool0 | |
| 3692 | Part158.BrickColor = BrickColor.new("Bright blue")
| |
| 3693 | Part158.Reflectance = 0.10000000149012 | |
| 3694 | Part158.Rotation = Vector3.new(-105, 0, 90) | |
| 3695 | Part158.Anchored = true | |
| 3696 | Part158.CanCollide = false | |
| 3697 | Part158.FormFactor = Enum.FormFactor.Custom | |
| 3698 | Part158.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3699 | Part158.CFrame = CFrame.new(4.80000019, 5.45247221, -17.6074982, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3700 | Part158.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3701 | Part158.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3702 | Part158.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3703 | Part158.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3704 | Part158.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3705 | Part158.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3706 | Part158.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3707 | Part158.Position = Vector3.new(4.80000019, 5.45247221, -17.6074982) | |
| 3708 | Part158.Orientation = Vector3.new(-75, 180, -90) | |
| 3709 | Part158.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3710 | Part159.Name = "BladeParts" | |
| 3711 | Part159.Parent = Tool0 | |
| 3712 | Part159.BrickColor = BrickColor.new("Bright green")
| |
| 3713 | Part159.Reflectance = 0.10000000149012 | |
| 3714 | Part159.Rotation = Vector3.new(-105, 0, 90) | |
| 3715 | Part159.Anchored = true | |
| 3716 | Part159.CanCollide = false | |
| 3717 | Part159.FormFactor = Enum.FormFactor.Custom | |
| 3718 | Part159.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3719 | Part159.CFrame = CFrame.new(4.80000019, 9.25611782, -15.0032158, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3720 | Part159.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3721 | Part159.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3722 | Part159.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3723 | Part159.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3724 | Part159.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3725 | Part159.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3726 | Part159.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 3727 | Part159.Position = Vector3.new(4.80000019, 9.25611782, -15.0032158) | |
| 3728 | Part159.Orientation = Vector3.new(-75, 180, -90) | |
| 3729 | Part159.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 3730 | Part160.Name = "BladeParts" | |
| 3731 | Part160.Parent = Tool0 | |
| 3732 | Part160.BrickColor = BrickColor.new("Bright bluish green")
| |
| 3733 | Part160.Reflectance = 0.10000000149012 | |
| 3734 | Part160.Rotation = Vector3.new(-105, 0, 90) | |
| 3735 | Part160.Anchored = true | |
| 3736 | Part160.CanCollide = false | |
| 3737 | Part160.FormFactor = Enum.FormFactor.Custom | |
| 3738 | Part160.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3739 | Part160.CFrame = CFrame.new(4.80000019, 9.73908043, -15.1326256, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3740 | Part160.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3741 | Part160.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3742 | Part160.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3743 | Part160.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3744 | Part160.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3745 | Part160.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3746 | Part160.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3747 | Part160.Position = Vector3.new(4.80000019, 9.73908043, -15.1326256) | |
| 3748 | Part160.Orientation = Vector3.new(-75, 180, -90) | |
| 3749 | Part160.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3750 | Part161.Name = "BladeParts" | |
| 3751 | Part161.Parent = Tool0 | |
| 3752 | Part161.BrickColor = BrickColor.new("Bright bluish green")
| |
| 3753 | Part161.Reflectance = 0.10000000149012 | |
| 3754 | Part161.Rotation = Vector3.new(-105, 0, 90) | |
| 3755 | Part161.Anchored = true | |
| 3756 | Part161.CanCollide = false | |
| 3757 | Part161.FormFactor = Enum.FormFactor.Custom | |
| 3758 | Part161.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3759 | Part161.CFrame = CFrame.new(4.80000019, 10.9638262, -14.425518, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3760 | Part161.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3761 | Part161.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3762 | Part161.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3763 | Part161.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3764 | Part161.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3765 | Part161.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3766 | Part161.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3767 | Part161.Position = Vector3.new(4.80000019, 10.9638262, -14.425518) | |
| 3768 | Part161.Orientation = Vector3.new(-75, 180, -90) | |
| 3769 | Part161.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3770 | Part162.Name = "BladeParts" | |
| 3771 | Part162.Parent = Tool0 | |
| 3772 | Part162.BrickColor = BrickColor.new("Bright bluish green")
| |
| 3773 | Part162.Reflectance = 0.10000000149012 | |
| 3774 | Part162.Rotation = Vector3.new(-105, 0, 90) | |
| 3775 | Part162.Anchored = true | |
| 3776 | Part162.CanCollide = false | |
| 3777 | Part162.FormFactor = Enum.FormFactor.Custom | |
| 3778 | Part162.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3779 | Part162.CFrame = CFrame.new(4.80000019, 7.90196514, -16.1932869, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3780 | Part162.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3781 | Part162.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3782 | Part162.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3783 | Part162.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3784 | Part162.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3785 | Part162.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3786 | Part162.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3787 | Part162.Position = Vector3.new(4.80000019, 7.90196514, -16.1932869) | |
| 3788 | Part162.Orientation = Vector3.new(-75, 180, -90) | |
| 3789 | Part162.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3790 | Part163.Name = "BladeParts" | |
| 3791 | Part163.Parent = Tool0 | |
| 3792 | Part163.BrickColor = BrickColor.new("Deep blue")
| |
| 3793 | Part163.Reflectance = 0.10000000149012 | |
| 3794 | Part163.Rotation = Vector3.new(-105, 0, 90) | |
| 3795 | Part163.Anchored = true | |
| 3796 | Part163.CanCollide = false | |
| 3797 | Part163.FormFactor = Enum.FormFactor.Custom | |
| 3798 | Part163.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3799 | Part163.CFrame = CFrame.new(4.80000019, 5.581882, -17.1245346, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3800 | Part163.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3801 | Part163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3802 | Part163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3803 | Part163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3804 | Part163.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3805 | Part163.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3806 | Part163.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 3807 | Part163.Position = Vector3.new(4.80000019, 5.581882, -17.1245346) | |
| 3808 | Part163.Orientation = Vector3.new(-75, 180, -90) | |
| 3809 | Part163.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 3810 | Part164.Name = "BladeParts" | |
| 3811 | Part164.Parent = Tool0 | |
| 3812 | Part164.BrickColor = BrickColor.new("Bright blue")
| |
| 3813 | Part164.Reflectance = 0.10000000149012 | |
| 3814 | Part164.Rotation = Vector3.new(-105, 0, 90) | |
| 3815 | Part164.Anchored = true | |
| 3816 | Part164.CanCollide = false | |
| 3817 | Part164.FormFactor = Enum.FormFactor.Custom | |
| 3818 | Part164.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3819 | Part164.CFrame = CFrame.new(4.80000019, 6.67721987, -16.9003906, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3820 | Part164.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3821 | Part164.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3822 | Part164.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3823 | Part164.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3824 | Part164.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3825 | Part164.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3826 | Part164.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3827 | Part164.Position = Vector3.new(4.80000019, 6.67721987, -16.9003906) | |
| 3828 | Part164.Orientation = Vector3.new(-75, 180, -90) | |
| 3829 | Part164.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3830 | Part165.Name = "BladeParts" | |
| 3831 | Part165.Parent = Tool0 | |
| 3832 | Part165.BrickColor = BrickColor.new("Medium blue")
| |
| 3833 | Part165.Reflectance = 0.10000000149012 | |
| 3834 | Part165.Rotation = Vector3.new(-105, 0, 90) | |
| 3835 | Part165.Anchored = true | |
| 3836 | Part165.CanCollide = false | |
| 3837 | Part165.FormFactor = Enum.FormFactor.Custom | |
| 3838 | Part165.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3839 | Part165.CFrame = CFrame.new(4.80000019, 7.64314604, -17.1592102, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3840 | Part165.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3841 | Part165.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3842 | Part165.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3843 | Part165.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3844 | Part165.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3845 | Part165.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3846 | Part165.Color = Color3.new(0.431373, 0.6, 0.792157) | |
| 3847 | Part165.Position = Vector3.new(4.80000019, 7.64314604, -17.1592102) | |
| 3848 | Part165.Orientation = Vector3.new(-75, 180, -90) | |
| 3849 | Part165.Color = Color3.new(0.431373, 0.6, 0.792157) | |
| 3850 | Part166.Name = "BladeParts" | |
| 3851 | Part166.Parent = Tool0 | |
| 3852 | Part166.BrickColor = BrickColor.new("Bright blue")
| |
| 3853 | Part166.Reflectance = 0.10000000149012 | |
| 3854 | Part166.Rotation = Vector3.new(-105, 0, 90) | |
| 3855 | Part166.Anchored = true | |
| 3856 | Part166.CanCollide = false | |
| 3857 | Part166.FormFactor = Enum.FormFactor.Custom | |
| 3858 | Part166.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3859 | Part166.CFrame = CFrame.new(4.80000019, 7.28959084, -16.5468369, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3860 | Part166.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3861 | Part166.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3862 | Part166.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3863 | Part166.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3864 | Part166.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3865 | Part166.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3866 | Part166.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3867 | Part166.Position = Vector3.new(4.80000019, 7.28959084, -16.5468369) | |
| 3868 | Part166.Orientation = Vector3.new(-75, 180, -90) | |
| 3869 | Part166.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3870 | Part167.Name = "BladeParts" | |
| 3871 | Part167.Parent = Tool0 | |
| 3872 | Part167.BrickColor = BrickColor.new("Deep blue")
| |
| 3873 | Part167.Reflectance = 0.10000000149012 | |
| 3874 | Part167.Rotation = Vector3.new(-105, 0, 90) | |
| 3875 | Part167.Anchored = true | |
| 3876 | Part167.CanCollide = false | |
| 3877 | Part167.FormFactor = Enum.FormFactor.Custom | |
| 3878 | Part167.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3879 | Part167.CFrame = CFrame.new(4.80000019, 6.90136385, -17.9957275, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3880 | Part167.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3881 | Part167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3882 | Part167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3883 | Part167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3884 | Part167.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3885 | Part167.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3886 | Part167.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 3887 | Part167.Position = Vector3.new(4.80000019, 6.90136385, -17.9957275) | |
| 3888 | Part167.Orientation = Vector3.new(-75, 180, -90) | |
| 3889 | Part167.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 3890 | Part168.Name = "BladeParts" | |
| 3891 | Part168.Parent = Tool0 | |
| 3892 | Part168.BrickColor = BrickColor.new("Earth green")
| |
| 3893 | Part168.Reflectance = 0.10000000149012 | |
| 3894 | Part168.Rotation = Vector3.new(-105, 0, 90) | |
| 3895 | Part168.Anchored = true | |
| 3896 | Part168.CanCollide = false | |
| 3897 | Part168.FormFactor = Enum.FormFactor.Custom | |
| 3898 | Part168.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3899 | Part168.CFrame = CFrame.new(4.80000019, 9.38553047, -14.5202503, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3900 | Part168.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3901 | Part168.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3902 | Part168.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3903 | Part168.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3904 | Part168.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3905 | Part168.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3906 | Part168.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 3907 | Part168.Position = Vector3.new(4.80000019, 9.38553047, -14.5202503) | |
| 3908 | Part168.Orientation = Vector3.new(-75, 180, -90) | |
| 3909 | Part168.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 3910 | Part169.Name = "BladeParts" | |
| 3911 | Part169.Parent = Tool0 | |
| 3912 | Part169.BrickColor = BrickColor.new("Bright green")
| |
| 3913 | Part169.Reflectance = 0.10000000149012 | |
| 3914 | Part169.Rotation = Vector3.new(-105, 0, 90) | |
| 3915 | Part169.Anchored = true | |
| 3916 | Part169.CanCollide = false | |
| 3917 | Part169.FormFactor = Enum.FormFactor.Custom | |
| 3918 | Part169.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3919 | Part169.CFrame = CFrame.new(4.80000019, 8.90256405, -14.3908377, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3920 | Part169.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3921 | Part169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3922 | Part169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3923 | Part169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3924 | Part169.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3925 | Part169.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3926 | Part169.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 3927 | Part169.Position = Vector3.new(4.80000019, 8.90256405, -14.3908377) | |
| 3928 | Part169.Orientation = Vector3.new(-75, 180, -90) | |
| 3929 | Part169.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 3930 | Part170.Name = "BladeParts" | |
| 3931 | Part170.Parent = Tool0 | |
| 3932 | Part170.BrickColor = BrickColor.new("Bright blue")
| |
| 3933 | Part170.Reflectance = 0.10000000149012 | |
| 3934 | Part170.Rotation = Vector3.new(-105, 0, 90) | |
| 3935 | Part170.Anchored = true | |
| 3936 | Part170.CanCollide = false | |
| 3937 | Part170.FormFactor = Enum.FormFactor.Custom | |
| 3938 | Part170.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3939 | Part170.CFrame = CFrame.new(4.80000019, 6.06484413, -17.2539444, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3940 | Part170.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3941 | Part170.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3942 | Part170.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3943 | Part170.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3944 | Part170.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3945 | Part170.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3946 | Part170.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3947 | Part170.Position = Vector3.new(4.80000019, 6.06484413, -17.2539444) | |
| 3948 | Part170.Orientation = Vector3.new(-75, 180, -90) | |
| 3949 | Part170.Color = Color3.new(0.0509804, 0.411765, 0.67451) | |
| 3950 | Part171.Name = "BladeParts" | |
| 3951 | Part171.Parent = Tool0 | |
| 3952 | Part171.BrickColor = BrickColor.new("Bright bluish green")
| |
| 3953 | Part171.Reflectance = 0.10000000149012 | |
| 3954 | Part171.Rotation = Vector3.new(-105, 0, 90) | |
| 3955 | Part171.Anchored = true | |
| 3956 | Part171.CanCollide = false | |
| 3957 | Part171.FormFactor = Enum.FormFactor.Custom | |
| 3958 | Part171.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3959 | Part171.CFrame = CFrame.new(4.7999959, 9.12670803, -15.4861755, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3960 | Part171.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3961 | Part171.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3962 | Part171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3963 | Part171.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3964 | Part171.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3965 | Part171.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3966 | Part171.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3967 | Part171.Position = Vector3.new(4.7999959, 9.12670803, -15.4861755) | |
| 3968 | Part171.Orientation = Vector3.new(-75, 180, -90) | |
| 3969 | Part171.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3970 | Part172.Name = "BladeParts" | |
| 3971 | Part172.Parent = Tool0 | |
| 3972 | Part172.BrickColor = BrickColor.new("Bright bluish green")
| |
| 3973 | Part172.Reflectance = 0.10000000149012 | |
| 3974 | Part172.Rotation = Vector3.new(-105, 0, 90) | |
| 3975 | Part172.Anchored = true | |
| 3976 | Part172.CanCollide = false | |
| 3977 | Part172.FormFactor = Enum.FormFactor.Custom | |
| 3978 | Part172.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3979 | Part172.CFrame = CFrame.new(4.80000019, 8.51433563, -15.8397322, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 3980 | Part172.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3981 | Part172.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3982 | Part172.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3983 | Part172.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3984 | Part172.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3985 | Part172.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3986 | Part172.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3987 | Part172.Position = Vector3.new(4.80000019, 8.51433563, -15.8397322) | |
| 3988 | Part172.Orientation = Vector3.new(-75, 180, -90) | |
| 3989 | Part172.Color = Color3.new(0, 0.560784, 0.611765) | |
| 3990 | Part173.Name = "BladeParts" | |
| 3991 | Part173.Parent = Tool0 | |
| 3992 | Part173.BrickColor = BrickColor.new("Deep blue")
| |
| 3993 | Part173.Reflectance = 0.10000000149012 | |
| 3994 | Part173.Rotation = Vector3.new(-105, 0, 90) | |
| 3995 | Part173.Anchored = true | |
| 3996 | Part173.CanCollide = false | |
| 3997 | Part173.FormFactor = Enum.FormFactor.Custom | |
| 3998 | Part173.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 3999 | Part173.CFrame = CFrame.new(4.80000019, 7.51373577, -17.6421738, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4000 | Part173.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4001 | Part173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4002 | Part173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4003 | Part173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4004 | Part173.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4005 | Part173.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4006 | Part173.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4007 | Part173.Position = Vector3.new(4.80000019, 7.51373577, -17.6421738) | |
| 4008 | Part173.Orientation = Vector3.new(-75, 180, -90) | |
| 4009 | Part173.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4010 | Part174.Name = "BladeParts" | |
| 4011 | Part174.Parent = Tool0 | |
| 4012 | Part174.BrickColor = BrickColor.new("Toothpaste")
| |
| 4013 | Part174.Reflectance = 0.10000000149012 | |
| 4014 | Part174.Rotation = Vector3.new(-105, 0, 90) | |
| 4015 | Part174.Anchored = true | |
| 4016 | Part174.CanCollide = false | |
| 4017 | Part174.FormFactor = Enum.FormFactor.Custom | |
| 4018 | Part174.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4019 | Part174.CFrame = CFrame.new(4.80000019, 7.03077078, -17.512764, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4020 | Part174.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4021 | Part174.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4022 | Part174.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4023 | Part174.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4024 | Part174.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4025 | Part174.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4026 | Part174.Color = Color3.new(0, 1, 1) | |
| 4027 | Part174.Position = Vector3.new(4.80000019, 7.03077078, -17.512764) | |
| 4028 | Part174.Orientation = Vector3.new(-75, 180, -90) | |
| 4029 | Part174.Color = Color3.new(0, 1, 1) | |
| 4030 | Part175.Name = "BladeParts" | |
| 4031 | Part175.Parent = Tool0 | |
| 4032 | Part175.BrickColor = BrickColor.new("Deep blue")
| |
| 4033 | Part175.Reflectance = 0.10000000149012 | |
| 4034 | Part175.Rotation = Vector3.new(-105, 0, 90) | |
| 4035 | Part175.Anchored = true | |
| 4036 | Part175.CanCollide = false | |
| 4037 | Part175.FormFactor = Enum.FormFactor.Custom | |
| 4038 | Part175.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4039 | Part175.CFrame = CFrame.new(4.80000019, 6.41839981, -17.8663139, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4040 | Part175.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4041 | Part175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4042 | Part175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4043 | Part175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4044 | Part175.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4045 | Part175.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4046 | Part175.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4047 | Part175.Position = Vector3.new(4.80000019, 6.41839981, -17.8663139) | |
| 4048 | Part175.Orientation = Vector3.new(-75, 180, -90) | |
| 4049 | Part175.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4050 | Part176.Name = "BladeParts" | |
| 4051 | Part176.Parent = Tool0 | |
| 4052 | Part176.BrickColor = BrickColor.new("Deep orange")
| |
| 4053 | Part176.Reflectance = 0.10000000149012 | |
| 4054 | Part176.Rotation = Vector3.new(-105, 0, 90) | |
| 4055 | Part176.Anchored = true | |
| 4056 | Part176.CanCollide = false | |
| 4057 | Part176.FormFactor = Enum.FormFactor.Custom | |
| 4058 | Part176.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4059 | Part176.CFrame = CFrame.new(4.80000019, 10.8690901, -12.8472204, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4060 | Part176.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4061 | Part176.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4062 | Part176.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4063 | Part176.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4064 | Part176.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4065 | Part176.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4066 | Part176.Color = Color3.new(1, 0.690196, 0) | |
| 4067 | Part176.Position = Vector3.new(4.80000019, 10.8690901, -12.8472204) | |
| 4068 | Part176.Orientation = Vector3.new(-75, 180, -90) | |
| 4069 | Part176.Color = Color3.new(1, 0.690196, 0) | |
| 4070 | Part177.Name = "BladeParts" | |
| 4071 | Part177.Parent = Tool0 | |
| 4072 | Part177.BrickColor = BrickColor.new("Earth green")
| |
| 4073 | Part177.Reflectance = 0.10000000149012 | |
| 4074 | Part177.Rotation = Vector3.new(-105, 0, 90) | |
| 4075 | Part177.Anchored = true | |
| 4076 | Part177.CanCollide = false | |
| 4077 | Part177.FormFactor = Enum.FormFactor.Custom | |
| 4078 | Part177.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4079 | Part177.CFrame = CFrame.new(4.80000019, 6.19425297, -16.7709808, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4080 | Part177.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4081 | Part177.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4082 | Part177.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4083 | Part177.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4084 | Part177.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4085 | Part177.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4086 | Part177.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4087 | Part177.Position = Vector3.new(4.80000019, 6.19425297, -16.7709808) | |
| 4088 | Part177.Orientation = Vector3.new(-75, 180, -90) | |
| 4089 | Part177.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4090 | Part178.Name = "BladeParts" | |
| 4091 | Part178.Parent = Tool0 | |
| 4092 | Part178.BrickColor = BrickColor.new("Bright green")
| |
| 4093 | Part178.Reflectance = 0.10000000149012 | |
| 4094 | Part178.Rotation = Vector3.new(-105, 0, 90) | |
| 4095 | Part178.Anchored = true | |
| 4096 | Part178.CanCollide = false | |
| 4097 | Part178.FormFactor = Enum.FormFactor.Custom | |
| 4098 | Part178.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4099 | Part178.CFrame = CFrame.new(4.80000019, 6.80662918, -16.4174252, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4100 | Part178.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4101 | Part178.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4102 | Part178.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4103 | Part178.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4104 | Part178.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4105 | Part178.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4106 | Part178.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 4107 | Part178.Position = Vector3.new(4.80000019, 6.80662918, -16.4174252) | |
| 4108 | Part178.Orientation = Vector3.new(-75, 180, -90) | |
| 4109 | Part178.Color = Color3.new(0.294118, 0.592157, 0.294118) | |
| 4110 | Part179.Name = "BladeParts" | |
| 4111 | Part179.Parent = Tool0 | |
| 4112 | Part179.BrickColor = BrickColor.new("Nougat")
| |
| 4113 | Part179.Reflectance = 0.10000000149012 | |
| 4114 | Part179.Rotation = Vector3.new(-105, 0, 90) | |
| 4115 | Part179.Anchored = true | |
| 4116 | Part179.CanCollide = false | |
| 4117 | Part179.FormFactor = Enum.FormFactor.Custom | |
| 4118 | Part179.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4119 | Part179.CFrame = CFrame.new(4.80000019, 11.3520536, -12.9766264, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4120 | Part179.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4121 | Part179.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4122 | Part179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4123 | Part179.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4124 | Part179.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4125 | Part179.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4126 | Part179.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 4127 | Part179.Position = Vector3.new(4.80000019, 11.3520536, -12.9766264) | |
| 4128 | Part179.Orientation = Vector3.new(-75, 180, -90) | |
| 4129 | Part179.Color = Color3.new(0.8, 0.556863, 0.411765) | |
| 4130 | Part180.Name = "fakeHandleParts" | |
| 4131 | Part180.Parent = Tool0 | |
| 4132 | Part180.BrickColor = BrickColor.new("Dusty Rose")
| |
| 4133 | Part180.Reflectance = 0.10000000149012 | |
| 4134 | Part180.Rotation = Vector3.new(-105, 0, 90) | |
| 4135 | Part180.Anchored = true | |
| 4136 | Part180.CanCollide = false | |
| 4137 | Part180.FormFactor = Enum.FormFactor.Custom | |
| 4138 | Part180.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4139 | Part180.CFrame = CFrame.new(4.80000019, 5.54720592, -19.1857948, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4140 | Part180.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4141 | Part180.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4142 | Part180.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4143 | Part180.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4144 | Part180.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4145 | Part180.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4146 | Part180.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4147 | Part180.Position = Vector3.new(4.80000019, 5.54720592, -19.1857948) | |
| 4148 | Part180.Orientation = Vector3.new(-75, 180, -90) | |
| 4149 | Part180.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4150 | Part181.Name = "fakeHandleParts" | |
| 4151 | Part181.Parent = Tool0 | |
| 4152 | Part181.BrickColor = BrickColor.new("Deep orange")
| |
| 4153 | Part181.Reflectance = 0.10000000149012 | |
| 4154 | Part181.Rotation = Vector3.new(-105, 0, 90) | |
| 4155 | Part181.Anchored = true | |
| 4156 | Part181.CanCollide = false | |
| 4157 | Part181.FormFactor = Enum.FormFactor.Custom | |
| 4158 | Part181.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4159 | Part181.CFrame = CFrame.new(4.80000019, 4.0983181, -18.7975693, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4160 | Part181.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4161 | Part181.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4162 | Part181.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4163 | Part181.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4164 | Part181.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4165 | Part181.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4166 | Part181.Color = Color3.new(1, 0.690196, 0) | |
| 4167 | Part181.Position = Vector3.new(4.80000019, 4.0983181, -18.7975693) | |
| 4168 | Part181.Orientation = Vector3.new(-75, 180, -90) | |
| 4169 | Part181.Color = Color3.new(1, 0.690196, 0) | |
| 4170 | Part182.Name = "fakeHandleParts" | |
| 4171 | Part182.Parent = Tool0 | |
| 4172 | Part182.BrickColor = BrickColor.new("Brown")
| |
| 4173 | Part182.Reflectance = 0.10000000149012 | |
| 4174 | Part182.Rotation = Vector3.new(-105, 0, 90) | |
| 4175 | Part182.Anchored = true | |
| 4176 | Part182.CanCollide = false | |
| 4177 | Part182.FormFactor = Enum.FormFactor.Custom | |
| 4178 | Part182.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4179 | Part182.CFrame = CFrame.new(4.80000019, 4.93483496, -19.5393486, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4180 | Part182.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4181 | Part182.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4182 | Part182.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4183 | Part182.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4184 | Part182.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4185 | Part182.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4186 | Part182.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4187 | Part182.Position = Vector3.new(4.80000019, 4.93483496, -19.5393486) | |
| 4188 | Part182.Orientation = Vector3.new(-75, 180, -90) | |
| 4189 | Part182.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4190 | Part183.Name = "fakeHandleParts" | |
| 4191 | Part183.Parent = Tool0 | |
| 4192 | Part183.BrickColor = BrickColor.new("Deep orange")
| |
| 4193 | Part183.Reflectance = 0.10000000149012 | |
| 4194 | Part183.Rotation = Vector3.new(-105, 0, 90) | |
| 4195 | Part183.Anchored = true | |
| 4196 | Part183.CanCollide = false | |
| 4197 | Part183.FormFactor = Enum.FormFactor.Custom | |
| 4198 | Part183.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4199 | Part183.CFrame = CFrame.new(4.80000019, 5.41779709, -19.6687622, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4200 | Part183.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4201 | Part183.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4202 | Part183.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4203 | Part183.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4204 | Part183.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4205 | Part183.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4206 | Part183.Color = Color3.new(1, 0.690196, 0) | |
| 4207 | Part183.Position = Vector3.new(4.80000019, 5.41779709, -19.6687622) | |
| 4208 | Part183.Orientation = Vector3.new(-75, 180, -90) | |
| 4209 | Part183.Color = Color3.new(1, 0.690196, 0) | |
| 4210 | Part184.Name = "fakeHandleParts" | |
| 4211 | Part184.Parent = Tool0 | |
| 4212 | Part184.BrickColor = BrickColor.new("Bright red")
| |
| 4213 | Part184.Reflectance = 0.10000000149012 | |
| 4214 | Part184.Rotation = Vector3.new(-105, 0, 90) | |
| 4215 | Part184.Anchored = true | |
| 4216 | Part184.CanCollide = false | |
| 4217 | Part184.FormFactor = Enum.FormFactor.Custom | |
| 4218 | Part184.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4219 | Part184.CFrame = CFrame.new(4.80000019, 3.96890807, -19.2805328, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4220 | Part184.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4221 | Part184.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4222 | Part184.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4223 | Part184.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4224 | Part184.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4225 | Part184.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4226 | Part184.Color = Color3.new(0.768627, 0.156863, 0.109804) | |
| 4227 | Part184.Position = Vector3.new(4.80000019, 3.96890807, -19.2805328) | |
| 4228 | Part184.Orientation = Vector3.new(-75, 180, -90) | |
| 4229 | Part184.Color = Color3.new(0.768627, 0.156863, 0.109804) | |
| 4230 | Part185.Name = "fakeHandleParts" | |
| 4231 | Part185.Parent = Tool0 | |
| 4232 | Part185.BrickColor = BrickColor.new("Dusty Rose")
| |
| 4233 | Part185.Reflectance = 0.10000000149012 | |
| 4234 | Part185.Rotation = Vector3.new(-105, 0, 90) | |
| 4235 | Part185.Anchored = true | |
| 4236 | Part185.CanCollide = false | |
| 4237 | Part185.FormFactor = Enum.FormFactor.Custom | |
| 4238 | Part185.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4239 | Part185.CFrame = CFrame.new(4.80000019, 6.15958023, -18.8322411, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4240 | Part185.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4241 | Part185.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4242 | Part185.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4243 | Part185.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4244 | Part185.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4245 | Part185.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4246 | Part185.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4247 | Part185.Position = Vector3.new(4.80000019, 6.15958023, -18.8322411) | |
| 4248 | Part185.Orientation = Vector3.new(-75, 180, -90) | |
| 4249 | Part185.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4250 | Part186.Name = "fakeHandleParts" | |
| 4251 | Part186.Parent = Tool0 | |
| 4252 | Part186.BrickColor = BrickColor.new("Dusty Rose")
| |
| 4253 | Part186.Reflectance = 0.10000000149012 | |
| 4254 | Part186.Rotation = Vector3.new(-105, 0, 90) | |
| 4255 | Part186.Anchored = true | |
| 4256 | Part186.CanCollide = false | |
| 4257 | Part186.FormFactor = Enum.FormFactor.Custom | |
| 4258 | Part186.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4259 | Part186.CFrame = CFrame.new(4.80000019, 4.22772884, -18.3146057, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4260 | Part186.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4261 | Part186.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4262 | Part186.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4263 | Part186.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4264 | Part186.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4265 | Part186.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4266 | Part186.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4267 | Part186.Position = Vector3.new(4.80000019, 4.22772884, -18.3146057) | |
| 4268 | Part186.Orientation = Vector3.new(-75, 180, -90) | |
| 4269 | Part186.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4270 | Part187.Name = "fakeHandleParts" | |
| 4271 | Part187.Parent = Tool0 | |
| 4272 | Part187.BrickColor = BrickColor.new("Brown")
| |
| 4273 | Part187.Reflectance = 0.10000000149012 | |
| 4274 | Part187.Rotation = Vector3.new(-105, 0, 90) | |
| 4275 | Part187.Anchored = true | |
| 4276 | Part187.CanCollide = false | |
| 4277 | Part187.FormFactor = Enum.FormFactor.Custom | |
| 4278 | Part187.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4279 | Part187.CFrame = CFrame.new(4.80000019, 6.64254284, -18.9616508, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4280 | Part187.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4281 | Part187.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4282 | Part187.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4283 | Part187.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4284 | Part187.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4285 | Part187.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4286 | Part187.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4287 | Part187.Position = Vector3.new(4.80000019, 6.64254284, -18.9616508) | |
| 4288 | Part187.Orientation = Vector3.new(-75, 180, -90) | |
| 4289 | Part187.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4290 | Part188.Name = "fakeHandleParts" | |
| 4291 | Part188.Parent = Tool0 | |
| 4292 | Part188.BrickColor = BrickColor.new("Brown")
| |
| 4293 | Part188.Reflectance = 0.10000000149012 | |
| 4294 | Part188.Rotation = Vector3.new(-105, 0, 90) | |
| 4295 | Part188.Anchored = true | |
| 4296 | Part188.CanCollide = false | |
| 4297 | Part188.FormFactor = Enum.FormFactor.Custom | |
| 4298 | Part188.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4299 | Part188.CFrame = CFrame.new(4.80000019, 4.45187283, -19.4099388, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4300 | Part188.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4301 | Part188.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4302 | Part188.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4303 | Part188.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4304 | Part188.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4305 | Part188.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4306 | Part188.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4307 | Part188.Position = Vector3.new(4.80000019, 4.45187283, -19.4099388) | |
| 4308 | Part188.Orientation = Vector3.new(-75, 180, -90) | |
| 4309 | Part188.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4310 | Part189.Name = "fakeHandleParts" | |
| 4311 | Part189.Parent = Tool0 | |
| 4312 | Part189.BrickColor = BrickColor.new("Dusty Rose")
| |
| 4313 | Part189.Reflectance = 0.10000000149012 | |
| 4314 | Part189.Rotation = Vector3.new(-105, 0, 90) | |
| 4315 | Part189.Anchored = true | |
| 4316 | Part189.CanCollide = false | |
| 4317 | Part189.FormFactor = Enum.FormFactor.Custom | |
| 4318 | Part189.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4319 | Part189.CFrame = CFrame.new(4.80000019, 5.90076017, -19.798172, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4320 | Part189.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4321 | Part189.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4322 | Part189.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4323 | Part189.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4324 | Part189.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4325 | Part189.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4326 | Part189.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4327 | Part189.Position = Vector3.new(4.80000019, 5.90076017, -19.798172) | |
| 4328 | Part189.Orientation = Vector3.new(-75, 180, -90) | |
| 4329 | Part189.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4330 | Part190.Name = "fakeHandleParts" | |
| 4331 | Part190.Parent = Tool0 | |
| 4332 | Part190.BrickColor = BrickColor.new("Brown")
| |
| 4333 | Part190.Reflectance = 0.10000000149012 | |
| 4334 | Part190.Rotation = Vector3.new(-105, 0, 90) | |
| 4335 | Part190.Anchored = true | |
| 4336 | Part190.CanCollide = false | |
| 4337 | Part190.FormFactor = Enum.FormFactor.Custom | |
| 4338 | Part190.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4339 | Part190.CFrame = CFrame.new(4.80000019, 5.28838778, -20.1517258, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4340 | Part190.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4341 | Part190.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4342 | Part190.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4343 | Part190.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4344 | Part190.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4345 | Part190.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4346 | Part190.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4347 | Part190.Position = Vector3.new(4.80000019, 5.28838778, -20.1517258) | |
| 4348 | Part190.Orientation = Vector3.new(-75, 180, -90) | |
| 4349 | Part190.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4350 | Part191.Name = "fakeHandleParts" | |
| 4351 | Part191.Parent = Tool0 | |
| 4352 | Part191.BrickColor = BrickColor.new("Cool yellow")
| |
| 4353 | Part191.Reflectance = 0.10000000149012 | |
| 4354 | Part191.Rotation = Vector3.new(-105, 0, 90) | |
| 4355 | Part191.Anchored = true | |
| 4356 | Part191.CanCollide = false | |
| 4357 | Part191.FormFactor = Enum.FormFactor.Custom | |
| 4358 | Part191.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4359 | Part191.CFrame = CFrame.new(4.80000019, 6.03016996, -19.3152084, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4360 | Part191.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4361 | Part191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4362 | Part191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4363 | Part191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4364 | Part191.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4365 | Part191.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4366 | Part191.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 4367 | Part191.Position = Vector3.new(4.80000019, 6.03016996, -19.3152084) | |
| 4368 | Part191.Orientation = Vector3.new(-75, 180, -90) | |
| 4369 | Part191.Color = Color3.new(0.992157, 0.917647, 0.552941) | |
| 4370 | Part192.Name = "fakeHandleParts" | |
| 4371 | Part192.Parent = Tool0 | |
| 4372 | Part192.BrickColor = BrickColor.new("Bright red")
| |
| 4373 | Part192.Reflectance = 0.10000000149012 | |
| 4374 | Part192.Rotation = Vector3.new(-105, 0, 90) | |
| 4375 | Part192.Anchored = true | |
| 4376 | Part192.CanCollide = false | |
| 4377 | Part192.FormFactor = Enum.FormFactor.Custom | |
| 4378 | Part192.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4379 | Part192.CFrame = CFrame.new(4.80000019, 3.61535597, -18.6681595, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4380 | Part192.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4381 | Part192.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4382 | Part192.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4383 | Part192.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4384 | Part192.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4385 | Part192.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4386 | Part192.Color = Color3.new(0.768627, 0.156863, 0.109804) | |
| 4387 | Part192.Position = Vector3.new(4.80000019, 3.61535597, -18.6681595) | |
| 4388 | Part192.Orientation = Vector3.new(-75, 180, -90) | |
| 4389 | Part192.Color = Color3.new(0.768627, 0.156863, 0.109804) | |
| 4390 | Part193.Name = "fakeHandleParts" | |
| 4391 | Part193.Parent = Tool0 | |
| 4392 | Part193.BrickColor = BrickColor.new("Brown")
| |
| 4393 | Part193.Reflectance = 0.10000000149012 | |
| 4394 | Part193.Rotation = Vector3.new(-105, 0, 90) | |
| 4395 | Part193.Anchored = true | |
| 4396 | Part193.CanCollide = false | |
| 4397 | Part193.FormFactor = Enum.FormFactor.Custom | |
| 4398 | Part193.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4399 | Part193.CFrame = CFrame.new(4.80000019, 6.51313591, -19.4446182, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4400 | Part193.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4401 | Part193.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4402 | Part193.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4403 | Part193.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4404 | Part193.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4405 | Part193.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4406 | Part193.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4407 | Part193.Position = Vector3.new(4.80000019, 6.51313591, -19.4446182) | |
| 4408 | Part193.Orientation = Vector3.new(-75, 180, -90) | |
| 4409 | Part193.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4410 | Part194.Name = "BladeParts" | |
| 4411 | Part194.Parent = Tool0 | |
| 4412 | Part194.BrickColor = BrickColor.new("Camo")
| |
| 4413 | Part194.Reflectance = 0.10000000149012 | |
| 4414 | Part194.Rotation = Vector3.new(-105, 0, 90) | |
| 4415 | Part194.Anchored = true | |
| 4416 | Part194.CanCollide = false | |
| 4417 | Part194.FormFactor = Enum.FormFactor.Custom | |
| 4418 | Part194.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4419 | Part194.CFrame = CFrame.new(4.80000019, 11.093236, -13.9425545, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4420 | Part194.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4421 | Part194.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4422 | Part194.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4423 | Part194.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4424 | Part194.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4425 | Part194.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4426 | Part194.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4427 | Part194.Position = Vector3.new(4.80000019, 11.093236, -13.9425545) | |
| 4428 | Part194.Orientation = Vector3.new(-75, 180, -90) | |
| 4429 | Part194.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4430 | Part195.Name = "BladeParts" | |
| 4431 | Part195.Parent = Tool0 | |
| 4432 | Part195.BrickColor = BrickColor.new("Earth green")
| |
| 4433 | Part195.Reflectance = 0.10000000149012 | |
| 4434 | Part195.Rotation = Vector3.new(-105, 0, 90) | |
| 4435 | Part195.Anchored = true | |
| 4436 | Part195.CanCollide = false | |
| 4437 | Part195.FormFactor = Enum.FormFactor.Custom | |
| 4438 | Part195.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4439 | Part195.CFrame = CFrame.new(4.80000019, 8.64374447, -15.3567677, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4440 | Part195.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4441 | Part195.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4442 | Part195.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4443 | Part195.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4444 | Part195.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4445 | Part195.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4446 | Part195.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4447 | Part195.Position = Vector3.new(4.80000019, 8.64374447, -15.3567677) | |
| 4448 | Part195.Orientation = Vector3.new(-75, 180, -90) | |
| 4449 | Part195.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4450 | Part196.Name = "BladeParts" | |
| 4451 | Part196.Parent = Tool0 | |
| 4452 | Part196.BrickColor = BrickColor.new("Earth green")
| |
| 4453 | Part196.Reflectance = 0.10000000149012 | |
| 4454 | Part196.Rotation = Vector3.new(-105, 0, 90) | |
| 4455 | Part196.Anchored = true | |
| 4456 | Part196.CanCollide = false | |
| 4457 | Part196.FormFactor = Enum.FormFactor.Custom | |
| 4458 | Part196.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4459 | Part196.CFrame = CFrame.new(4.80000019, 8.99729633, -15.9691343, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4460 | Part196.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4461 | Part196.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4462 | Part196.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4463 | Part196.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4464 | Part196.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4465 | Part196.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4466 | Part196.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4467 | Part196.Position = Vector3.new(4.80000019, 8.99729633, -15.9691343) | |
| 4468 | Part196.Orientation = Vector3.new(-75, 180, -90) | |
| 4469 | Part196.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4470 | Part197.Name = "BladeParts" | |
| 4471 | Part197.Parent = Tool0 | |
| 4472 | Part197.BrickColor = BrickColor.new("Bright bluish green")
| |
| 4473 | Part197.Reflectance = 0.10000000149012 | |
| 4474 | Part197.Rotation = Vector3.new(-105, 0, 90) | |
| 4475 | Part197.Anchored = true | |
| 4476 | Part197.CanCollide = false | |
| 4477 | Part197.FormFactor = Enum.FormFactor.Custom | |
| 4478 | Part197.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4479 | Part197.CFrame = CFrame.new(4.7999959, 12.6715336, -13.8478203, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4480 | Part197.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4481 | Part197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4482 | Part197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4483 | Part197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4484 | Part197.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4485 | Part197.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4486 | Part197.Color = Color3.new(0, 0.560784, 0.611765) | |
| 4487 | Part197.Position = Vector3.new(4.7999959, 12.6715336, -13.8478203) | |
| 4488 | Part197.Orientation = Vector3.new(-75, 180, -90) | |
| 4489 | Part197.Color = Color3.new(0, 0.560784, 0.611765) | |
| 4490 | Part198.Name = "BladeParts" | |
| 4491 | Part198.Parent = Tool0 | |
| 4492 | Part198.BrickColor = BrickColor.new("Earth green")
| |
| 4493 | Part198.Reflectance = 0.10000000149012 | |
| 4494 | Part198.Rotation = Vector3.new(-105, 0, 90) | |
| 4495 | Part198.Anchored = true | |
| 4496 | Part198.CanCollide = false | |
| 4497 | Part198.FormFactor = Enum.FormFactor.Custom | |
| 4498 | Part198.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4499 | Part198.CFrame = CFrame.new(4.80000019, 8.3849268, -16.3226871, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4500 | Part198.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4501 | Part198.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4502 | Part198.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4503 | Part198.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4504 | Part198.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4505 | Part198.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4506 | Part198.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4507 | Part198.Position = Vector3.new(4.80000019, 8.3849268, -16.3226871) | |
| 4508 | Part198.Orientation = Vector3.new(-75, 180, -90) | |
| 4509 | Part198.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4510 | Part199.Name = "BladeParts" | |
| 4511 | Part199.Parent = Tool0 | |
| 4512 | Part199.BrickColor = BrickColor.new("Deep blue")
| |
| 4513 | Part199.Reflectance = 0.10000000149012 | |
| 4514 | Part199.Rotation = Vector3.new(-105, 0, 90) | |
| 4515 | Part199.Anchored = true | |
| 4516 | Part199.CanCollide = false | |
| 4517 | Part199.FormFactor = Enum.FormFactor.Custom | |
| 4518 | Part199.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4519 | Part199.CFrame = CFrame.new(4.80000019, 7.38432598, -18.1251335, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4520 | Part199.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4521 | Part199.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4522 | Part199.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4523 | Part199.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4524 | Part199.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4525 | Part199.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4526 | Part199.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4527 | Part199.Position = Vector3.new(4.80000019, 7.38432598, -18.1251335) | |
| 4528 | Part199.Orientation = Vector3.new(-75, 180, -90) | |
| 4529 | Part199.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4530 | Part200.Name = "BladeParts" | |
| 4531 | Part200.Parent = Tool0 | |
| 4532 | Part200.BrickColor = BrickColor.new("Deep blue")
| |
| 4533 | Part200.Reflectance = 0.10000000149012 | |
| 4534 | Part200.Rotation = Vector3.new(-105, 0, 90) | |
| 4535 | Part200.Anchored = true | |
| 4536 | Part200.CanCollide = false | |
| 4537 | Part200.FormFactor = Enum.FormFactor.Custom | |
| 4538 | Part200.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4539 | Part200.CFrame = CFrame.new(4.80000019, 7.160182, -17.0297966, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4540 | Part200.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4541 | Part200.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4542 | Part200.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4543 | Part200.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4544 | Part200.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4545 | Part200.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4546 | Part200.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4547 | Part200.Position = Vector3.new(4.80000019, 7.160182, -17.0297966) | |
| 4548 | Part200.Orientation = Vector3.new(-75, 180, -90) | |
| 4549 | Part200.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4550 | Part201.Name = "BladeParts" | |
| 4551 | Part201.Parent = Tool0 | |
| 4552 | Part201.BrickColor = BrickColor.new("Camo")
| |
| 4553 | Part201.Reflectance = 0.10000000149012 | |
| 4554 | Part201.Rotation = Vector3.new(-105, 0, 90) | |
| 4555 | Part201.Anchored = true | |
| 4556 | Part201.CanCollide = false | |
| 4557 | Part201.FormFactor = Enum.FormFactor.Custom | |
| 4558 | Part201.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4559 | Part201.CFrame = CFrame.new(4.80000019, 12.0591583, -14.201376, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4560 | Part201.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4561 | Part201.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4562 | Part201.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4563 | Part201.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4564 | Part201.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4565 | Part201.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4566 | Part201.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4567 | Part201.Position = Vector3.new(4.80000019, 12.0591583, -14.201376) | |
| 4568 | Part201.Orientation = Vector3.new(-75, 180, -90) | |
| 4569 | Part201.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4570 | Part202.Name = "BladeParts" | |
| 4571 | Part202.Parent = Tool0 | |
| 4572 | Part202.BrickColor = BrickColor.new("Camo")
| |
| 4573 | Part202.Reflectance = 0.10000000149012 | |
| 4574 | Part202.Rotation = Vector3.new(-105, 0, 90) | |
| 4575 | Part202.Anchored = true | |
| 4576 | Part202.CanCollide = false | |
| 4577 | Part202.FormFactor = Enum.FormFactor.Custom | |
| 4578 | Part202.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4579 | Part202.CFrame = CFrame.new(4.80000019, 12.5421238, -14.33078, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4580 | Part202.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4581 | Part202.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4582 | Part202.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4583 | Part202.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4584 | Part202.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4585 | Part202.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4586 | Part202.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4587 | Part202.Position = Vector3.new(4.80000019, 12.5421238, -14.33078) | |
| 4588 | Part202.Orientation = Vector3.new(-75, 180, -90) | |
| 4589 | Part202.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4590 | Part203.Name = "BladeParts" | |
| 4591 | Part203.Parent = Tool0 | |
| 4592 | Part203.BrickColor = BrickColor.new("Camo")
| |
| 4593 | Part203.Reflectance = 0.10000000149012 | |
| 4594 | Part203.Rotation = Vector3.new(-105, 0, 90) | |
| 4595 | Part203.Anchored = true | |
| 4596 | Part203.CanCollide = false | |
| 4597 | Part203.FormFactor = Enum.FormFactor.Custom | |
| 4598 | Part203.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4599 | Part203.CFrame = CFrame.new(4.80000019, 13.1544962, -13.9772282, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4600 | Part203.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4601 | Part203.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4602 | Part203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4603 | Part203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4604 | Part203.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4605 | Part203.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4606 | Part203.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4607 | Part203.Position = Vector3.new(4.80000019, 13.1544962, -13.9772282) | |
| 4608 | Part203.Orientation = Vector3.new(-75, 180, -90) | |
| 4609 | Part203.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4610 | Part204.Name = "BladeParts" | |
| 4611 | Part204.Parent = Tool0 | |
| 4612 | Part204.BrickColor = BrickColor.new("Bright bluish green")
| |
| 4613 | Part204.Reflectance = 0.10000000149012 | |
| 4614 | Part204.Rotation = Vector3.new(-105, 0, 90) | |
| 4615 | Part204.Anchored = true | |
| 4616 | Part204.CanCollide = false | |
| 4617 | Part204.FormFactor = Enum.FormFactor.Custom | |
| 4618 | Part204.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4619 | Part204.CFrame = CFrame.new(4.80000019, 11.5761976, -14.0719662, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4620 | Part204.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4621 | Part204.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4622 | Part204.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4623 | Part204.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4624 | Part204.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4625 | Part204.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4626 | Part204.Color = Color3.new(0, 0.560784, 0.611765) | |
| 4627 | Part204.Position = Vector3.new(4.80000019, 11.5761976, -14.0719662) | |
| 4628 | Part204.Orientation = Vector3.new(-75, 180, -90) | |
| 4629 | Part204.Color = Color3.new(0, 0.560784, 0.611765) | |
| 4630 | Part205.Name = "BladeParts" | |
| 4631 | Part205.Parent = Tool0 | |
| 4632 | Part205.BrickColor = BrickColor.new("Deep blue")
| |
| 4633 | Part205.Reflectance = 0.10000000149012 | |
| 4634 | Part205.Rotation = Vector3.new(-105, 0, 90) | |
| 4635 | Part205.Anchored = true | |
| 4636 | Part205.CanCollide = false | |
| 4637 | Part205.FormFactor = Enum.FormFactor.Custom | |
| 4638 | Part205.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4639 | Part205.CFrame = CFrame.new(4.80000019, 6.54781008, -17.3833504, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4640 | Part205.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4641 | Part205.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4642 | Part205.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4643 | Part205.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4644 | Part205.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4645 | Part205.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4646 | Part205.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4647 | Part205.Position = Vector3.new(4.80000019, 6.54781008, -17.3833504) | |
| 4648 | Part205.Orientation = Vector3.new(-75, 180, -90) | |
| 4649 | Part205.Color = Color3.new(0.129412, 0.329412, 0.72549) | |
| 4650 | Part206.Name = "BladeParts" | |
| 4651 | Part206.Parent = Tool0 | |
| 4652 | Part206.BrickColor = BrickColor.new("Earth green")
| |
| 4653 | Part206.Reflectance = 0.10000000149012 | |
| 4654 | Part206.Rotation = Vector3.new(-105, 0, 90) | |
| 4655 | Part206.Anchored = true | |
| 4656 | Part206.CanCollide = false | |
| 4657 | Part206.FormFactor = Enum.FormFactor.Custom | |
| 4658 | Part206.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4659 | Part206.CFrame = CFrame.new(4.80000019, 9.60967445, -15.6155844, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4660 | Part206.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4661 | Part206.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4662 | Part206.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4663 | Part206.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4664 | Part206.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4665 | Part206.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4666 | Part206.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4667 | Part206.Position = Vector3.new(4.80000019, 9.60967445, -15.6155844) | |
| 4668 | Part206.Orientation = Vector3.new(-75, 180, -90) | |
| 4669 | Part206.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4670 | Part207.Name = "BladeParts" | |
| 4671 | Part207.Parent = Tool0 | |
| 4672 | Part207.BrickColor = BrickColor.new("Earth green")
| |
| 4673 | Part207.Reflectance = 0.10000000149012 | |
| 4674 | Part207.Rotation = Vector3.new(-105, 0, 90) | |
| 4675 | Part207.Anchored = true | |
| 4676 | Part207.CanCollide = false | |
| 4677 | Part207.FormFactor = Enum.FormFactor.Custom | |
| 4678 | Part207.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4679 | Part207.CFrame = CFrame.new(4.7999959, 7.77255392, -16.6762466, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4680 | Part207.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4681 | Part207.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4682 | Part207.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4683 | Part207.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4684 | Part207.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4685 | Part207.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4686 | Part207.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4687 | Part207.Position = Vector3.new(4.7999959, 7.77255392, -16.6762466) | |
| 4688 | Part207.Orientation = Vector3.new(-75, 180, -90) | |
| 4689 | Part207.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4690 | Part208.Name = "BladeParts" | |
| 4691 | Part208.Parent = Tool0 | |
| 4692 | Part208.BrickColor = BrickColor.new("Earth green")
| |
| 4693 | Part208.Reflectance = 0.10000000149012 | |
| 4694 | Part208.Rotation = Vector3.new(-105, 0, 90) | |
| 4695 | Part208.Anchored = true | |
| 4696 | Part208.CanCollide = false | |
| 4697 | Part208.FormFactor = Enum.FormFactor.Custom | |
| 4698 | Part208.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4699 | Part208.CFrame = CFrame.new(4.80000019, 8.03137493, -15.7103224, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4700 | Part208.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4701 | Part208.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4702 | Part208.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4703 | Part208.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4704 | Part208.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4705 | Part208.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4706 | Part208.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4707 | Part208.Position = Vector3.new(4.80000019, 8.03137493, -15.7103224) | |
| 4708 | Part208.Orientation = Vector3.new(-75, 180, -90) | |
| 4709 | Part208.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4710 | Part209.Name = "BladeParts" | |
| 4711 | Part209.Parent = Tool0 | |
| 4712 | Part209.BrickColor = BrickColor.new("Earth green")
| |
| 4713 | Part209.Reflectance = 0.10000000149012 | |
| 4714 | Part209.Rotation = Vector3.new(-105, 0, 90) | |
| 4715 | Part209.Anchored = true | |
| 4716 | Part209.CanCollide = false | |
| 4717 | Part209.FormFactor = Enum.FormFactor.Custom | |
| 4718 | Part209.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4719 | Part209.CFrame = CFrame.new(4.80000019, 9.86849022, -14.649662, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4720 | Part209.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4721 | Part209.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4722 | Part209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4723 | Part209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4724 | Part209.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4725 | Part209.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4726 | Part209.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4727 | Part209.Position = Vector3.new(4.80000019, 9.86849022, -14.649662) | |
| 4728 | Part209.Orientation = Vector3.new(-75, 180, -90) | |
| 4729 | Part209.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4730 | Part210.Name = "BladeParts" | |
| 4731 | Part210.Parent = Tool0 | |
| 4732 | Part210.BrickColor = BrickColor.new("Earth green")
| |
| 4733 | Part210.Reflectance = 0.10000000149012 | |
| 4734 | Part210.Rotation = Vector3.new(-105, 0, 90) | |
| 4735 | Part210.Anchored = true | |
| 4736 | Part210.CanCollide = false | |
| 4737 | Part210.FormFactor = Enum.FormFactor.Custom | |
| 4738 | Part210.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4739 | Part210.CFrame = CFrame.new(4.80000019, 10.4808598, -14.2961082, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4740 | Part210.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4741 | Part210.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4742 | Part210.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4743 | Part210.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4744 | Part210.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4745 | Part210.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4746 | Part210.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4747 | Part210.Position = Vector3.new(4.80000019, 10.4808598, -14.2961082) | |
| 4748 | Part210.Orientation = Vector3.new(-75, 180, -90) | |
| 4749 | Part210.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4750 | Part211.Name = "BladeParts" | |
| 4751 | Part211.Parent = Tool0 | |
| 4752 | Part211.BrickColor = BrickColor.new("Earth green")
| |
| 4753 | Part211.Reflectance = 0.10000000149012 | |
| 4754 | Part211.Rotation = Vector3.new(-105, 0, 90) | |
| 4755 | Part211.Anchored = true | |
| 4756 | Part211.CanCollide = false | |
| 4757 | Part211.FormFactor = Enum.FormFactor.Custom | |
| 4758 | Part211.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4759 | Part211.CFrame = CFrame.new(4.80000019, 10.2220421, -15.2620296, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4760 | Part211.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4761 | Part211.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4762 | Part211.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4763 | Part211.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4764 | Part211.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4765 | Part211.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4766 | Part211.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4767 | Part211.Position = Vector3.new(4.80000019, 10.2220421, -15.2620296) | |
| 4768 | Part211.Orientation = Vector3.new(-75, 180, -90) | |
| 4769 | Part211.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4770 | Part212.Name = "BladeParts" | |
| 4771 | Part212.Parent = Tool0 | |
| 4772 | Part212.BrickColor = BrickColor.new("Earth green")
| |
| 4773 | Part212.Reflectance = 0.10000000149012 | |
| 4774 | Part212.Rotation = Vector3.new(-105, 0, 90) | |
| 4775 | Part212.Anchored = true | |
| 4776 | Part212.CanCollide = false | |
| 4777 | Part212.FormFactor = Enum.FormFactor.Custom | |
| 4778 | Part212.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4779 | Part212.CFrame = CFrame.new(4.80000019, 8.25551796, -16.8056526, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4780 | Part212.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4781 | Part212.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4782 | Part212.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4783 | Part212.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4784 | Part212.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4785 | Part212.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4786 | Part212.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4787 | Part212.Position = Vector3.new(4.80000019, 8.25551796, -16.8056526) | |
| 4788 | Part212.Orientation = Vector3.new(-75, 180, -90) | |
| 4789 | Part212.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4790 | Part213.Name = "BladeParts" | |
| 4791 | Part213.Parent = Tool0 | |
| 4792 | Part213.BrickColor = BrickColor.new("Earth green")
| |
| 4793 | Part213.Reflectance = 0.10000000149012 | |
| 4794 | Part213.Rotation = Vector3.new(-105, 0, 90) | |
| 4795 | Part213.Anchored = true | |
| 4796 | Part213.CanCollide = false | |
| 4797 | Part213.FormFactor = Enum.FormFactor.Custom | |
| 4798 | Part213.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4799 | Part213.CFrame = CFrame.new(4.80000019, 7.41900206, -16.0638714, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4800 | Part213.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4801 | Part213.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4802 | Part213.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4803 | Part213.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4804 | Part213.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4805 | Part213.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4806 | Part213.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4807 | Part213.Position = Vector3.new(4.80000019, 7.41900206, -16.0638714) | |
| 4808 | Part213.Orientation = Vector3.new(-75, 180, -90) | |
| 4809 | Part213.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4810 | Part214.Name = "BladeParts" | |
| 4811 | Part214.Parent = Tool0 | |
| 4812 | Part214.BrickColor = BrickColor.new("Earth green")
| |
| 4813 | Part214.Reflectance = 0.10000000149012 | |
| 4814 | Part214.Rotation = Vector3.new(-105, 0, 90) | |
| 4815 | Part214.Anchored = true | |
| 4816 | Part214.CanCollide = false | |
| 4817 | Part214.FormFactor = Enum.FormFactor.Custom | |
| 4818 | Part214.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4819 | Part214.CFrame = CFrame.new(4.80000019, 8.12610912, -17.28862, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4820 | Part214.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4821 | Part214.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4822 | Part214.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4823 | Part214.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4824 | Part214.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4825 | Part214.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4826 | Part214.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4827 | Part214.Position = Vector3.new(4.80000019, 8.12610912, -17.28862) | |
| 4828 | Part214.Orientation = Vector3.new(-75, 180, -90) | |
| 4829 | Part214.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4830 | Part215.Name = "BladeParts" | |
| 4831 | Part215.Parent = Tool0 | |
| 4832 | Part215.BrickColor = BrickColor.new("Earth green")
| |
| 4833 | Part215.Reflectance = 0.10000000149012 | |
| 4834 | Part215.Rotation = Vector3.new(-105, 0, 90) | |
| 4835 | Part215.Anchored = true | |
| 4836 | Part215.CanCollide = false | |
| 4837 | Part215.FormFactor = Enum.FormFactor.Custom | |
| 4838 | Part215.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4839 | Part215.CFrame = CFrame.new(4.80000019, 8.86789036, -16.4520988, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4840 | Part215.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4841 | Part215.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4842 | Part215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4843 | Part215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4844 | Part215.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4845 | Part215.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4846 | Part215.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4847 | Part215.Position = Vector3.new(4.80000019, 8.86789036, -16.4520988) | |
| 4848 | Part215.Orientation = Vector3.new(-75, 180, -90) | |
| 4849 | Part215.Color = Color3.new(0.152941, 0.27451, 0.176471) | |
| 4850 | Part216.Name = "BladeParts" | |
| 4851 | Part216.Parent = Tool0 | |
| 4852 | Part216.BrickColor = BrickColor.new("Camo")
| |
| 4853 | Part216.Reflectance = 0.10000000149012 | |
| 4854 | Part216.Rotation = Vector3.new(-105, 0, 90) | |
| 4855 | Part216.Anchored = true | |
| 4856 | Part216.CanCollide = false | |
| 4857 | Part216.FormFactor = Enum.FormFactor.Custom | |
| 4858 | Part216.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4859 | Part216.CFrame = CFrame.new(4.80000019, 11.4467878, -14.554924, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4860 | Part216.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4861 | Part216.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4862 | Part216.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4863 | Part216.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4864 | Part216.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4865 | Part216.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4866 | Part216.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4867 | Part216.Position = Vector3.new(4.80000019, 11.4467878, -14.554924) | |
| 4868 | Part216.Orientation = Vector3.new(-75, 180, -90) | |
| 4869 | Part216.Color = Color3.new(0.227451, 0.490196, 0.0823529) | |
| 4870 | Part217.Name = "fakeHandleParts" | |
| 4871 | Part217.Parent = Tool0 | |
| 4872 | Part217.BrickColor = BrickColor.new("Brown")
| |
| 4873 | Part217.Reflectance = 0.10000000149012 | |
| 4874 | Part217.Rotation = Vector3.new(-105, 0, 90) | |
| 4875 | Part217.Anchored = true | |
| 4876 | Part217.CanCollide = false | |
| 4877 | Part217.FormFactor = Enum.FormFactor.Custom | |
| 4878 | Part217.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4879 | Part217.CFrame = CFrame.new(4.80000019, 3.83949995, -19.7634926, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4880 | Part217.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4881 | Part217.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4882 | Part217.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4883 | Part217.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4884 | Part217.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4885 | Part217.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4886 | Part217.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4887 | Part217.Position = Vector3.new(4.80000019, 3.83949995, -19.7634926) | |
| 4888 | Part217.Orientation = Vector3.new(-75, 180, -90) | |
| 4889 | Part217.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4890 | Part218.Name = "fakeHandleParts" | |
| 4891 | Part218.Parent = Tool0 | |
| 4892 | Part218.BrickColor = BrickColor.new("Lavender")
| |
| 4893 | Part218.Reflectance = 0.10000000149012 | |
| 4894 | Part218.Rotation = Vector3.new(-105, 0, 90) | |
| 4895 | Part218.Anchored = true | |
| 4896 | Part218.CanCollide = false | |
| 4897 | Part218.FormFactor = Enum.FormFactor.Custom | |
| 4898 | Part218.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4899 | Part218.CFrame = CFrame.new(4.80000019, 4.19305277, -20.3758621, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4900 | Part218.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4901 | Part218.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4902 | Part218.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4903 | Part218.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4904 | Part218.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4905 | Part218.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4906 | Part218.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 4907 | Part218.Position = Vector3.new(4.80000019, 4.19305277, -20.3758621) | |
| 4908 | Part218.Orientation = Vector3.new(-75, 180, -90) | |
| 4909 | Part218.Color = Color3.new(0.54902, 0.356863, 0.623529) | |
| 4910 | Part219.Name = "fakeHandleParts" | |
| 4911 | Part219.Parent = Tool0 | |
| 4912 | Part219.BrickColor = BrickColor.new("Dusty Rose")
| |
| 4913 | Part219.Reflectance = 0.10000000149012 | |
| 4914 | Part219.Rotation = Vector3.new(-105, 0, 90) | |
| 4915 | Part219.Anchored = true | |
| 4916 | Part219.CanCollide = false | |
| 4917 | Part219.FormFactor = Enum.FormFactor.Custom | |
| 4918 | Part219.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4919 | Part219.CFrame = CFrame.new(4.80000401, 3.58068109, -20.7294235, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4920 | Part219.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4921 | Part219.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4922 | Part219.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4923 | Part219.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4924 | Part219.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4925 | Part219.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4926 | Part219.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4927 | Part219.Position = Vector3.new(4.80000401, 3.58068109, -20.7294235) | |
| 4928 | Part219.Orientation = Vector3.new(-75, 180, -90) | |
| 4929 | Part219.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4930 | Part220.Name = "fakeHandleParts" | |
| 4931 | Part220.Parent = Tool0 | |
| 4932 | Part220.BrickColor = BrickColor.new("Brown")
| |
| 4933 | Part220.Reflectance = 0.10000000149012 | |
| 4934 | Part220.Rotation = Vector3.new(-105, 0, 90) | |
| 4935 | Part220.Anchored = true | |
| 4936 | Part220.CanCollide = false | |
| 4937 | Part220.FormFactor = Enum.FormFactor.Custom | |
| 4938 | Part220.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4939 | Part220.CFrame = CFrame.new(4.80000019, 3.48594689, -19.151123, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4940 | Part220.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4941 | Part220.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4942 | Part220.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4943 | Part220.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4944 | Part220.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4945 | Part220.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4946 | Part220.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4947 | Part220.Position = Vector3.new(4.80000019, 3.48594689, -19.151123) | |
| 4948 | Part220.Orientation = Vector3.new(-75, 180, -90) | |
| 4949 | Part220.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4950 | Part221.Name = "fakeHandleParts" | |
| 4951 | Part221.Parent = Tool0 | |
| 4952 | Part221.BrickColor = BrickColor.new("Dusty Rose")
| |
| 4953 | Part221.Reflectance = 0.10000000149012 | |
| 4954 | Part221.Rotation = Vector3.new(-105, 0, 90) | |
| 4955 | Part221.Anchored = true | |
| 4956 | Part221.CanCollide = false | |
| 4957 | Part221.FormFactor = Enum.FormFactor.Custom | |
| 4958 | Part221.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4959 | Part221.CFrame = CFrame.new(4.80000019, 4.32246208, -19.8929024, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4960 | Part221.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4961 | Part221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4962 | Part221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4963 | Part221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4964 | Part221.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4965 | Part221.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4966 | Part221.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4967 | Part221.Position = Vector3.new(4.80000019, 4.32246208, -19.8929024) | |
| 4968 | Part221.Orientation = Vector3.new(-75, 180, -90) | |
| 4969 | Part221.Color = Color3.new(0.639216, 0.294118, 0.294118) | |
| 4970 | Part222.Name = "fakeHandleParts" | |
| 4971 | Part222.Parent = Tool0 | |
| 4972 | Part222.BrickColor = BrickColor.new("Brown")
| |
| 4973 | Part222.Reflectance = 0.10000000149012 | |
| 4974 | Part222.Rotation = Vector3.new(-105, 0, 90) | |
| 4975 | Part222.Anchored = true | |
| 4976 | Part222.CanCollide = false | |
| 4977 | Part222.FormFactor = Enum.FormFactor.Custom | |
| 4978 | Part222.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4979 | Part222.CFrame = CFrame.new(4.80000401, 3.22712708, -20.1170464, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 4980 | Part222.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4981 | Part222.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4982 | Part222.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4983 | Part222.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4984 | Part222.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4985 | Part222.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4986 | Part222.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4987 | Part222.Position = Vector3.new(4.80000401, 3.22712708, -20.1170464) | |
| 4988 | Part222.Orientation = Vector3.new(-75, 180, -90) | |
| 4989 | Part222.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 4990 | Part223.Name = "fakeHandleParts" | |
| 4991 | Part223.Parent = Tool0 | |
| 4992 | Part223.BrickColor = BrickColor.new("Deep orange")
| |
| 4993 | Part223.Reflectance = 0.10000000149012 | |
| 4994 | Part223.Rotation = Vector3.new(-105, 0, 90) | |
| 4995 | Part223.Anchored = true | |
| 4996 | Part223.CanCollide = false | |
| 4997 | Part223.FormFactor = Enum.FormFactor.Custom | |
| 4998 | Part223.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 4999 | Part223.CFrame = CFrame.new(4.80000019, 3.71008992, -20.2464561, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 5000 | Part223.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5001 | Part223.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5002 | Part223.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5003 | Part223.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5004 | Part223.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5005 | Part223.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5006 | Part223.Color = Color3.new(1, 0.690196, 0) | |
| 5007 | Part223.Position = Vector3.new(4.80000019, 3.71008992, -20.2464561) | |
| 5008 | Part223.Orientation = Vector3.new(-75, 180, -90) | |
| 5009 | Part223.Color = Color3.new(1, 0.690196, 0) | |
| 5010 | Part224.Name = "fakeHandleParts" | |
| 5011 | Part224.Parent = Tool0 | |
| 5012 | Part224.BrickColor = BrickColor.new("Brown")
| |
| 5013 | Part224.Reflectance = 0.10000000149012 | |
| 5014 | Part224.Rotation = Vector3.new(-105, 0, 90) | |
| 5015 | Part224.Anchored = true | |
| 5016 | Part224.CanCollide = false | |
| 5017 | Part224.FormFactor = Enum.FormFactor.Custom | |
| 5018 | Part224.Size = Vector3.new(0.5, 0.5, 0.5) | |
| 5019 | Part224.CFrame = CFrame.new(4.80000019, 3.097718, -20.6000061, 8.94069672e-08, -0.999999881, 2.98023224e-08, -0.258818984, 0, 0.965925574, -0.965925455, -5.96046448e-08, -0.258819014) | |
| 5020 | Part224.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5021 | Part224.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5022 | Part224.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5023 | Part224.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5024 | Part224.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5025 | Part224.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 5026 | Part224.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 5027 | Part224.Position = Vector3.new(4.80000019, 3.097718, -20.6000061) | |
| 5028 | Part224.Orientation = Vector3.new(-75, 180, -90) | |
| 5029 | Part224.Color = Color3.new(0.486275, 0.360784, 0.27451) | |
| 5030 | Script225.Name = "UltimateWeld" | |
| 5031 | Script225.Parent = Tool0 | |
| 5032 | table.insert(cors,sandbox(Script225,function() | |
| 5033 | --DO NOT USE BOTH WELDING SCRIPTS PROVIDED BY THIS MODEL | |
| 5034 | --The regular script is recommended | |
| 5035 | ||
| 5036 | ||
| 5037 | ||
| 5038 | --[[ | |
| 5039 | Prevents welds from breaking/transforming when player uses the tool | |
| 5040 | This recreates the EXACT weld every time | |
| 5041 | This also prevents lag build up by clearing old welds, the tradition weld script just keeps making new | |
| 5042 | ones, which can lead to weapons have crazy amounts of welds that dont work (I saw 6000 in a weapon once) | |
| 5043 | ]] | |
| 5044 | ||
| 5045 | --[[Usage | |
| 5046 | 1. Remove Old welding script (optional, only if updating a weapon and that weapon does not rely on that script) | |
| 5047 | 2. Anchor all parts of tool and put inside of a tool object | |
| 5048 | 3. Place this script in that tool (make sure you do this AFTER step 2, otherwise it may fail) | |
| 5049 | 4. Treat like normal tool, nothing special has to be done with it | |
| 5050 | ]] | |
| 5051 | ||
| 5052 | --[[The local script included in this model can only be used if | |
| 5053 | 1. The weapon is being placed in the players backpack first (i.e. the weapon is in starterpack and moves to player backpack) | |
| 5054 | OR | |
| 5055 | 2. The weapon is previously welded (weapon can be placed in workspace and picked up then) | |
| 5056 | ]] | |
| 5057 | repeat wait() until script.Parent:FindFirstChild("Handle")
| |
| 5058 | local welds={}
| |
| 5059 | function ClearOldWelds(tbl) | |
| 5060 | for _,v in pairs(tbl) do | |
| 5061 | if v:IsA('Weld') then
| |
| 5062 | v:Destroy() | |
| 5063 | end | |
| 5064 | end | |
| 5065 | end | |
| 5066 | ||
| 5067 | function Equipped() | |
| 5068 | local handle=script.Parent:FindFirstChild('Handle')
| |
| 5069 | if not handle then return end | |
| 5070 | local tble=handle:GetChildren() | |
| 5071 | for _,v in pairs(script.Parent:GetChildren()) do | |
| 5072 | if v:IsA('BasePart') and v~=handle then
| |
| 5073 | local c1 | |
| 5074 | for _1,v1 in pairs(welds) do | |
| 5075 | if _1==v then | |
| 5076 | c1=v1 | |
| 5077 | break | |
| 5078 | end | |
| 5079 | end | |
| 5080 | if not c1 then | |
| 5081 | welds[v]=v.CFrame:inverse()*handle.CFrame | |
| 5082 | v.Anchored=false | |
| 5083 | c1=welds[v] | |
| 5084 | end | |
| 5085 | local weld=Instance.new('Weld')
| |
| 5086 | weld.Part0=handle | |
| 5087 | weld.Part1=v | |
| 5088 | weld.C0=CFrame.new() | |
| 5089 | weld.C1=c1 | |
| 5090 | weld.Parent=handle | |
| 5091 | end | |
| 5092 | end | |
| 5093 | ClearOldWelds(tble) | |
| 5094 | handle.Anchored=false | |
| 5095 | end | |
| 5096 | Equipped() | |
| 5097 | script.Parent.Equipped:connect(Equipped) | |
| 5098 | ||
| 5099 | --Made by DonnyTheDemented | |
| 5100 | ||
| 5101 | end)) | |
| 5102 | Script226.Name = "Welding" | |
| 5103 | Script226.Parent = Tool0 | |
| 5104 | table.insert(cors,sandbox(Script226,function() | |
| 5105 | function Weld(x,y) | |
| 5106 | local W = Instance.new("Weld")
| |
| 5107 | W.Part0 = x | |
| 5108 | W.Part1 = y | |
| 5109 | local CJ = CFrame.new(x.Position) | |
| 5110 | local C0 = x.CFrame:inverse()*CJ | |
| 5111 | local C1 = y.CFrame:inverse()*CJ | |
| 5112 | W.C0 = C0 | |
| 5113 | W.C1 = C1 | |
| 5114 | W.Parent = x | |
| 5115 | end | |
| 5116 | ||
| 5117 | function Get(A) | |
| 5118 | if A.className == "Part" then | |
| 5119 | Weld(script.Parent.Handle, A) | |
| 5120 | A.Anchored = false | |
| 5121 | else | |
| 5122 | local C = A:GetChildren() | |
| 5123 | for i=1, #C do | |
| 5124 | Get(C[i]) | |
| 5125 | end | |
| 5126 | end | |
| 5127 | end | |
| 5128 | ||
| 5129 | function Finale() | |
| 5130 | Get(script.Parent) | |
| 5131 | end | |
| 5132 | ||
| 5133 | script.Parent.Equipped:connect(Finale) | |
| 5134 | script.Parent.Unequipped:connect(Finale) | |
| 5135 | Finale() | |
| 5136 | end)) | |
| 5137 | Script227.Name = "Welding" | |
| 5138 | Script227.Parent = Tool0 | |
| 5139 | table.insert(cors,sandbox(Script227,function() | |
| 5140 | function Weld(x,y) | |
| 5141 | local W = Instance.new("Weld")
| |
| 5142 | W.Part0 = x | |
| 5143 | W.Part1 = y | |
| 5144 | local CJ = CFrame.new(x.Position) | |
| 5145 | local C0 = x.CFrame:inverse()*CJ | |
| 5146 | local C1 = y.CFrame:inverse()*CJ | |
| 5147 | W.C0 = C0 | |
| 5148 | W.C1 = C1 | |
| 5149 | W.Parent = x | |
| 5150 | end | |
| 5151 | ||
| 5152 | function Get(A) | |
| 5153 | if A.className == "Part" then | |
| 5154 | Weld(script.Parent.Handle, A) | |
| 5155 | A.Anchored = false | |
| 5156 | else | |
| 5157 | local C = A:GetChildren() | |
| 5158 | for i=1, #C do | |
| 5159 | Get(C[i]) | |
| 5160 | end | |
| 5161 | end | |
| 5162 | end | |
| 5163 | ||
| 5164 | function Finale() | |
| 5165 | Get(script.Parent) | |
| 5166 | end | |
| 5167 | ||
| 5168 | script.Parent.Equipped:connect(Finale) | |
| 5169 | script.Parent.Unequipped:connect(Finale) | |
| 5170 | Finale() | |
| 5171 | end)) | |
| 5172 | LocalScript228.Name = "BackupWeld" | |
| 5173 | LocalScript228.Parent = Tool0 | |
| 5174 | table.insert(cors,sandbox(LocalScript228,function() | |
| 5175 | function Weld(x,y) | |
| 5176 | local W = Instance.new("Weld")
| |
| 5177 | W.Part0 = x | |
| 5178 | W.Part1 = y | |
| 5179 | local CJ = CFrame.new(x.Position) | |
| 5180 | local C0 = x.CFrame:inverse()*CJ | |
| 5181 | local C1 = y.CFrame:inverse()*CJ | |
| 5182 | W.C0 = C0 | |
| 5183 | W.C1 = C1 | |
| 5184 | W.Parent = x | |
| 5185 | end | |
| 5186 | ||
| 5187 | function Get(A) | |
| 5188 | if A.className == "Part" then | |
| 5189 | Weld(script.Parent.Handle, A) | |
| 5190 | A.Anchored = false | |
| 5191 | else | |
| 5192 | local C = A:GetChildren() | |
| 5193 | for i=1, #C do | |
| 5194 | Get(C[i]) | |
| 5195 | end | |
| 5196 | end | |
| 5197 | end | |
| 5198 | ||
| 5199 | function Finale() | |
| 5200 | Get(script.Parent) | |
| 5201 | end | |
| 5202 | ||
| 5203 | script.Parent.Equipped:connect(Finale) | |
| 5204 | script.Parent.Unequipped:connect(Finale) | |
| 5205 | Finale() | |
| 5206 | end)) | |
| 5207 | for i,v in pairs(mas:GetChildren()) do | |
| 5208 | v.Parent = game:GetService("Players").LocalPlayer.Backpack
| |
| 5209 | pcall(function() v:MakeJoints() end) | |
| 5210 | end | |
| 5211 | mas:Destroy() | |
| 5212 | for i,v in pairs(cors) do | |
| 5213 | spawn(function() | |
| 5214 | pcall(v) | |
| 5215 | end) | |
| 5216 | end |