End_Wolf

Untitled

Jul 5th, 2018
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. --Converted with ttyyuu12345's model to script plugin v4
  3. function sandbox(var,func)
  4. local env = getfenv(func)
  5. local newenv = setmetatable({},{
  6. __index = function(self,k)
  7. if k=="script" then
  8. return var
  9. else
  10. return env[k]
  11. end
  12. end,
  13. })
  14. setfenv(func,newenv)
  15. return func
  16. end
  17. cors = {}
  18. mas = Instance.new("Model",game:GetService("Lighting"))
  19. Tool0 = Instance.new("Tool")
  20. Script1 = Instance.new("Script")
  21. Part2 = Instance.new("Part")
  22. SpecialMesh3 = Instance.new("SpecialMesh")
  23. ManualWeld4 = Instance.new("ManualWeld")
  24. LocalScript5 = Instance.new("LocalScript")
  25. Script6 = Instance.new("Script")
  26. Part7 = Instance.new("Part")
  27. Script8 = Instance.new("Script")
  28. RotateP9 = Instance.new("RotateP")
  29. Part10 = Instance.new("Part")
  30. CylinderMesh11 = Instance.new("CylinderMesh")
  31. ManualWeld12 = Instance.new("ManualWeld")
  32. Part13 = Instance.new("Part")
  33. ManualWeld14 = Instance.new("ManualWeld")
  34. ManualWeld15 = Instance.new("ManualWeld")
  35. Part16 = Instance.new("Part")
  36. Part17 = Instance.new("Part")
  37. ManualWeld18 = Instance.new("ManualWeld")
  38. Part19 = Instance.new("Part")
  39. Part20 = Instance.new("Part")
  40. Part21 = Instance.new("Part")
  41. Part22 = Instance.new("Part")
  42. ManualWeld23 = Instance.new("ManualWeld")
  43. Part24 = Instance.new("Part")
  44. CylinderMesh25 = Instance.new("CylinderMesh")
  45. Part26 = Instance.new("Part")
  46. Part27 = Instance.new("Part")
  47. ManualWeld28 = Instance.new("ManualWeld")
  48. Part29 = Instance.new("Part")
  49. Part30 = Instance.new("Part")
  50. Part31 = Instance.new("Part")
  51. CylinderMesh32 = Instance.new("CylinderMesh")
  52. Part33 = Instance.new("Part")
  53. CylinderMesh34 = Instance.new("CylinderMesh")
  54. Part35 = Instance.new("Part")
  55. SpecialMesh36 = Instance.new("SpecialMesh")
  56. Part37 = Instance.new("Part")
  57. CylinderMesh38 = Instance.new("CylinderMesh")
  58. ManualWeld39 = Instance.new("ManualWeld")
  59. Part40 = Instance.new("Part")
  60. SpecialMesh41 = Instance.new("SpecialMesh")
  61. ManualWeld42 = Instance.new("ManualWeld")
  62. Camera43 = Instance.new("Camera")
  63. Tool0.Name = "Powerjack"
  64. Tool0.Parent = mas
  65. Tool0.Grip = CFrame.new(0, 0, -1.5, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  66. Tool0.GripForward = Vector3.new(-1, -0, -0)
  67. Tool0.GripPos = Vector3.new(0, 0, -1.5)
  68. Tool0.GripRight = Vector3.new(0, 1, 0)
  69. Tool0.GripUp = Vector3.new(0, 0, 1)
  70. Script1.Name = "SwordScript"
  71. Script1.Parent = Tool0
  72. table.insert(cors,sandbox(Script1,function()
  73. --rbxsig%SvOCRfs4MS09DiFeZ9ryb0KVTZKM2pYFaz18031HaaiHrZnjsJ+iWsDsSxTs3c1kYMSB0HlSbgzhXXww3xOBUhW0xm1/5mi4O0KnHYGSc4eBTonK6ryFiCwTrBSmrG59TVp2eG6uctncdw9z3Eo/RyJSCFHXct6N9imKE9Qsdco=%
  74. --rbxassetid%1014475%
  75. -------- OMG HAX
  76.  
  77. r = game:service("RunService")
  78.  
  79.  
  80. local damage = 5
  81.  
  82.  
  83. local slash_damage = 10
  84. local lunge_damage = 30
  85.  
  86. sword = script.Parent.Handle
  87. Tool = script.Parent
  88.  
  89. local Jarate = Tool.Damagevuln
  90. local JarateClone = Jarate:Clone()
  91.  
  92.  
  93. local SlashSound = Instance.new("Sound")
  94. SlashSound.SoundId = "rbxasset://sounds\\swordslash.wav"
  95. SlashSound.Parent = sword
  96. SlashSound.Volume = .7
  97.  
  98. local LungeSound = Instance.new("Sound")
  99. LungeSound.SoundId = "rbxasset://sounds\\swordlunge.wav"
  100. LungeSound.Parent = sword
  101. LungeSound.Volume = .6
  102.  
  103. local UnsheathSound = Instance.new("Sound")
  104. UnsheathSound.SoundId = "rbxasset://sounds\\unsheath.wav"
  105. UnsheathSound.Parent = sword
  106. UnsheathSound.Volume = 1
  107.  
  108.  
  109. function blow(hit)
  110. if (hit.Parent == nil) then return end -- happens when bullet hits sword
  111.  
  112. local humanoid = hit.Parent:findFirstChild("Humanoid")
  113. local vCharacter = Tool.Parent
  114. local vPlayer = game.Players:playerFromCharacter(vCharacter)
  115. local hum = vCharacter:findFirstChild("Humanoid") -- non-nil if tool held by a character
  116. if humanoid~=nil and humanoid ~= hum and hum ~= nil then
  117. -- final check, make sure sword is in-hand
  118.  
  119. local right_arm = vCharacter:FindFirstChild("Right Arm")
  120. if (right_arm ~= nil) then
  121. local joint = right_arm:FindFirstChild("RightGrip")
  122. if (joint ~= nil and (joint.Part0 == sword or joint.Part1 == sword)) then
  123. tagHumanoid(humanoid, vPlayer)
  124. humanoid:TakeDamage(damage)
  125. wait(1)
  126. untagHumanoid(humanoid)
  127. if (humanoid.Health <= 0) then
  128. hum:TakeDamage(75)
  129. end
  130. end
  131. end
  132.  
  133.  
  134. end
  135. end
  136.  
  137.  
  138. function tagHumanoid(humanoid, player)
  139. local creator_tag = Instance.new("ObjectValue")
  140. creator_tag.Value = player
  141. creator_tag.Name = "creator"
  142. creator_tag.Parent = humanoid
  143. end
  144.  
  145. function untagHumanoid(humanoid)
  146. if humanoid ~= nil then
  147. local tag = humanoid:findFirstChild("creator")
  148. if tag ~= nil then
  149. tag.Parent = nil
  150. end
  151. end
  152. end
  153.  
  154.  
  155. function attack()
  156. damage = slash_damage
  157. SlashSound:play()
  158. local anim = Instance.new("StringValue")
  159. anim.Name = "toolanim"
  160. anim.Value = "Slash"
  161. anim.Parent = Tool
  162. end
  163.  
  164. function lunge()
  165. damage = lunge_damage
  166.  
  167. LungeSound:play()
  168.  
  169. local anim = Instance.new("StringValue")
  170. anim.Name = "toolanim"
  171. anim.Value = "Lunge"
  172. anim.Parent = Tool
  173.  
  174.  
  175. force = Instance.new("BodyVelocity")
  176. force.velocity = Vector3.new(0,10,0) --Tool.Parent.Torso.CFrame.lookVector * 80
  177. force.Parent = Tool.Parent.Torso
  178. wait(.25)
  179. swordOut()
  180. wait(.25)
  181. force.Parent = nil
  182. wait(.5)
  183. swordUp()
  184.  
  185. damage = slash_damage
  186. end
  187.  
  188. function swordUp()
  189. Tool.GripForward = Vector3.new(-1,0,0)
  190. Tool.GripRight = Vector3.new(0,1,0)
  191. Tool.GripUp = Vector3.new(0,0,1)
  192. end
  193.  
  194. function swordOut()
  195. Tool.GripForward = Vector3.new(0,0,1)
  196. Tool.GripRight = Vector3.new(0,-1,0)
  197. Tool.GripUp = Vector3.new(-1,0,0)
  198. end
  199.  
  200. function swordAcross()
  201. -- parry
  202. end
  203.  
  204.  
  205. Tool.Enabled = true
  206. local last_attack = 0
  207. function onActivated()
  208.  
  209. if not Tool.Enabled then
  210. return
  211. end
  212.  
  213. Tool.Enabled = false
  214.  
  215. local character = Tool.Parent;
  216. local humanoid = character.Humanoid
  217. if humanoid == nil then
  218. print("Humanoid not found")
  219. return
  220. end
  221.  
  222. t = r.Stepped:wait()
  223.  
  224. if (t - last_attack < .2) then
  225. lunge()
  226. else
  227. attack()
  228. end
  229.  
  230. last_attack = t
  231.  
  232. --wait(.5)
  233.  
  234. Tool.Enabled = true
  235. end
  236.  
  237.  
  238. function onEquipped()
  239. UnsheathSound:play()
  240. if Tool.Parent.Head ~= nil then
  241. JarateClone.Parent = Tool.Parent.Humanoid
  242. JarateClone.Disabled = false
  243. end
  244. end
  245.  
  246.  
  247. script.Parent.Activated:connect(onActivated)
  248. script.Parent.Equipped:connect(onEquipped)
  249.  
  250.  
  251. connection = sword.Touched:connect(blow)
  252.  
  253.  
  254.  
  255. end))
  256. Part2.Name = "Handle"
  257. Part2.Parent = Tool0
  258. Part2.CFrame = CFrame.new(-4.42699814, 2.24855804, -3.26099801, -0.931543052, 0.278013945, -0.234380454, -0.224591956, 0.0670283288, 0.972143292, 0.285979867, 0.95823431, -1.65005218e-07)
  259. Part2.Orientation = Vector3.new(-76.4399948, -90, -73.3799973)
  260. Part2.Position = Vector3.new(-4.42699814, 2.24855804, -3.26099801)
  261. Part2.Rotation = Vector3.new(-90, -13.5599995, -163.37999)
  262. Part2.Color = Color3.new(0.388235, 0.372549, 0.384314)
  263. Part2.Transparency = 1
  264. Part2.Size = Vector3.new(1, 0.800000012, 4)
  265. Part2.BottomSurface = Enum.SurfaceType.Smooth
  266. Part2.BrickColor = BrickColor.new("Dark stone grey")
  267. Part2.Reflectance = 0.40000000596046
  268. Part2.TopSurface = Enum.SurfaceType.Smooth
  269. Part2.brickColor = BrickColor.new("Dark stone grey")
  270. Part2.FormFactor = Enum.FormFactor.Plate
  271. Part2.formFactor = Enum.FormFactor.Plate
  272. SpecialMesh3.Parent = Part2
  273. SpecialMesh3.MeshId = "http://www.roblox.com/asset/?id=12592754"
  274. SpecialMesh3.Scale = Vector3.new(1.25, 1.25, 1.25)
  275. SpecialMesh3.TextureId = "http://www.roblox.com/asset/?id=12592745"
  276. SpecialMesh3.MeshType = Enum.MeshType.FileMesh
  277. ManualWeld4.Name = "Handle-to-Part Strong Joint"
  278. ManualWeld4.Parent = Part2
  279. ManualWeld4.C0 = CFrame.new(-0.5, -0.400000006, 2, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  280. ManualWeld4.C1 = CFrame.new(-0.39598465, -0.110012054, -0.615955353, 5.74564979e-07, 0.999997497, -3.2175339e-07, -9.24373396e-08, 1.93046276e-07, 0.999996781, 0.999998808, -1.26374459e-06, -8.90991387e-08)
  281. ManualWeld4.Part0 = Part2
  282. ManualWeld4.Part1 = Part16
  283. ManualWeld4.part1 = Part16
  284. LocalScript5.Name = "Local Gui"
  285. LocalScript5.Parent = Tool0
  286. LocalScript5.LinkedSource = "http://www.roblox.com/asset/?id=1014476"
  287. Script6.Name = "Damagevuln"
  288. Script6.Parent = Tool0
  289. table.insert(cors,sandbox(Script6,function()
  290. --This is the localscript that's dumped into other players' characters
  291. --when they get hit by jarate
  292. DamageMag=1.2 --default 1.5, sets how much more damage
  293. JarateTime=15 --jarate length
  294. Humanoid=script.Parent
  295. Connections={}
  296. Colors={}
  297. --script.Changed:connect(function()
  298. -- if script.Parent~=Humanoid then
  299. -- for _,v in pairs(Connections) do
  300. -- v:disconnect()
  301. -- end
  302. -- end
  303. --end)
  304.  
  305. local isthere = false
  306. local Dude = script.Parent
  307. local DudeSpeed = Dude.WalkSpeed
  308.  
  309. function check()
  310. if isthere == true then
  311. end
  312. end
  313.  
  314. while wait(0.1) do
  315. local Potion = script.Parent.Parent:FindFirstChild("Powerjack")
  316. if not Potion then
  317. isthere = false
  318. Dude.WalkSpeed = DudeSpeed
  319. script:remove()
  320. else
  321. isthere = true
  322. Dude.WalkSpeed = DudeSpeed * 1.15
  323. check()
  324. end
  325. end
  326.  
  327.  
  328.  
  329. lasthealth=Humanoid.Health
  330. table.insert(Connections,
  331. Humanoid.HealthChanged:connect(function(health)
  332. print(health,lasthealth)
  333. if lasthealth~=math.floor(health) then
  334. local Damage=lasthealth-health
  335. if Damage>0 then
  336. lasthealth=math.floor(lasthealth-Damage*DamageMag)
  337. Humanoid.Health=lasthealth
  338. else
  339. lasthealth=math.floor(Humanoid.Health)
  340. check()
  341. end
  342. end
  343. end))
  344. function scan(a)
  345. if a:IsA("BasePart") then
  346. Colors[a]=a.Color
  347. table.insert(Connections,a.Changed:connect(function(prop)
  348. if prop=="Color" then
  349. end
  350. end))
  351. end
  352. for _,v in pairs(a:GetChildren()) do
  353. check()
  354. end
  355. end
  356. scan(Humanoid.Parent)
  357.  
  358.  
  359.  
  360.  
  361. end))
  362. Script6.Disabled = true
  363. Part7.Parent = Tool0
  364. Part7.CFrame = CFrame.new(-3.99699807, 0.305559009, -3.23000312, -0.931542099, -0.23437959, -0.278011382, -0.224592015, 0.972138524, -0.0670277104, 0.285976768, 6.1065973e-14, -0.958231091)
  365. Part7.Orientation = Vector3.new(3.83999991, -163.819992, -13.0099993)
  366. Part7.Position = Vector3.new(-3.99699807, 0.305559009, -3.23000312)
  367. Part7.Rotation = Vector3.new(176, -16.1399994, 165.87999)
  368. Part7.Color = Color3.new(0.388235, 0.372549, 0.384314)
  369. Part7.Size = Vector3.new(1.10000193, 0.340000153, 0.499999791)
  370. Part7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  371. Part7.BrickColor = BrickColor.new("Dark stone grey")
  372. Part7.Material = Enum.Material.SmoothPlastic
  373. Part7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  374. Part7.brickColor = BrickColor.new("Dark stone grey")
  375. Part7.FormFactor = Enum.FormFactor.Custom
  376. Part7.formFactor = Enum.FormFactor.Custom
  377. Script8.Name = "Weld"
  378. Script8.Parent = Tool0
  379. table.insert(cors,sandbox(Script8,function()
  380. --Simply put it inside any model with bricks inside
  381.  
  382.  
  383. local prev
  384. local parts = script.Parent:GetChildren()
  385.  
  386. for i = 1,#parts do
  387. if parts[i]:IsA("BasePart") then
  388. if (prev ~= nil)then
  389. local weld = Instance.new("Weld")
  390. weld.Part0 = prev
  391. weld.Part1 = parts[i]
  392. weld.C0 = prev.CFrame:inverse()
  393. weld.C1 = parts[i].CFrame:inverse()
  394. weld.Parent = prev
  395. end
  396. prev = parts[i]
  397. end
  398. end
  399.  
  400. --Credits to NyroKoSu and OrientalAura
  401. end))
  402. RotateP9.Name = "d��������������ng.........you got owned..."
  403. RotateP9.Parent = Script8
  404. RotateP9.BaseAngle = 0.25
  405. Part10.Parent = Tool0
  406. Part10.CFrame = CFrame.new(-4.7538538, 4.44400549, -3.69968867, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  407. Part10.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  408. Part10.Position = Vector3.new(-4.7538538, 4.44400549, -3.69968867)
  409. Part10.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  410. Part10.Color = Color3.new(0.470588, 0.564706, 0.509804)
  411. Part10.Size = Vector3.new(0.200000003, 0.200000003, 0.359999925)
  412. Part10.BottomSurface = Enum.SurfaceType.Smooth
  413. Part10.BrickColor = BrickColor.new("Sand green")
  414. Part10.Material = Enum.Material.CorrodedMetal
  415. Part10.TopSurface = Enum.SurfaceType.Smooth
  416. Part10.brickColor = BrickColor.new("Sand green")
  417. Part10.FormFactor = Enum.FormFactor.Custom
  418. Part10.formFactor = Enum.FormFactor.Custom
  419. CylinderMesh11.Parent = Part10
  420. ManualWeld12.Name = "Part-to-Part Strong Joint"
  421. ManualWeld12.Parent = Part10
  422. ManualWeld12.C0 = CFrame.new(-0.100000001, -0.100000001, 0.179999962, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  423. ManualWeld12.C1 = CFrame.new(-0.464996338, 0.409988403, -0.11000061, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  424. ManualWeld12.Part0 = Part10
  425. ManualWeld12.Part1 = Part19
  426. ManualWeld12.part1 = Part19
  427. Part13.Parent = Tool0
  428. Part13.CFrame = CFrame.new(-5.01799679, 4.29754019, -3.24200392, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  429. Part13.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  430. Part13.Position = Vector3.new(-5.01799679, 4.29754019, -3.24200392)
  431. Part13.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  432. Part13.Color = Color3.new(0.470588, 0.564706, 0.509804)
  433. Part13.Size = Vector3.new(0.909999728, 0.200000003, 0.419999808)
  434. Part13.BottomSurface = Enum.SurfaceType.Smooth
  435. Part13.BrickColor = BrickColor.new("Sand green")
  436. Part13.Material = Enum.Material.CorrodedMetal
  437. Part13.TopSurface = Enum.SurfaceType.Smooth
  438. Part13.brickColor = BrickColor.new("Sand green")
  439. Part13.FormFactor = Enum.FormFactor.Custom
  440. Part13.formFactor = Enum.FormFactor.Custom
  441. ManualWeld14.Name = "Part-to-Part Strong Joint"
  442. ManualWeld14.Parent = Part13
  443. ManualWeld14.C0 = CFrame.new(-0.454999864, -0.100000001, 0.209999904, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  444. ManualWeld14.C1 = CFrame.new(-0.769973755, -0.17999649, -0.189968109, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  445. ManualWeld14.Part0 = Part13
  446. ManualWeld14.Part1 = Part24
  447. ManualWeld14.part1 = Part24
  448. ManualWeld15.Name = "Part-to-Part Strong Joint"
  449. ManualWeld15.Parent = Part13
  450. ManualWeld15.C0 = CFrame.new(-0.454999864, -0.100000001, 0.209999904, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  451. ManualWeld15.C1 = CFrame.new(-0.455005646, -0.0999994278, -0.214996338, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  452. ManualWeld15.Part0 = Part13
  453. ManualWeld15.Part1 = Part21
  454. ManualWeld15.part1 = Part21
  455. Part16.Parent = Tool0
  456. Part16.CFrame = CFrame.new(-5.03067732, 4.27347946, -3.23168683, 0.278012812, -0.23437956, -0.931542277, 0.0670277178, 0.972140253, -0.224591866, 0.958232105, -6.45634657e-09, 0.285978317)
  457. Part16.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  458. Part16.Position = Vector3.new(-5.03067732, 4.27347946, -3.23168683)
  459. Part16.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  460. Part16.Color = Color3.new(0.639216, 0.294118, 0.294118)
  461. Part16.Size = Vector3.new(0.959999979, 0.200000003, 1.27999878)
  462. Part16.BottomSurface = Enum.SurfaceType.Smooth
  463. Part16.BrickColor = BrickColor.new("Dusty Rose")
  464. Part16.Material = Enum.Material.SmoothPlastic
  465. Part16.TopSurface = Enum.SurfaceType.Smooth
  466. Part16.brickColor = BrickColor.new("Dusty Rose")
  467. Part16.FormFactor = Enum.FormFactor.Custom
  468. Part16.formFactor = Enum.FormFactor.Custom
  469. Part17.Parent = Tool0
  470. Part17.CFrame = CFrame.new(-4.64109564, 4.40946674, -3.35951495, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  471. Part17.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  472. Part17.Position = Vector3.new(-4.64109564, 4.40946674, -3.35951495)
  473. Part17.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  474. Part17.Color = Color3.new(0.470588, 0.564706, 0.509804)
  475. Part17.Size = Vector3.new(0.909999728, 0.200000003, 0.359999925)
  476. Part17.BottomSurface = Enum.SurfaceType.Smooth
  477. Part17.BrickColor = BrickColor.new("Sand green")
  478. Part17.Material = Enum.Material.CorrodedMetal
  479. Part17.TopSurface = Enum.SurfaceType.Smooth
  480. Part17.brickColor = BrickColor.new("Sand green")
  481. Part17.FormFactor = Enum.FormFactor.Custom
  482. Part17.formFactor = Enum.FormFactor.Custom
  483. ManualWeld18.Name = "Part-to-Part Strong Joint"
  484. ManualWeld18.Parent = Part17
  485. ManualWeld18.C0 = CFrame.new(-0.454999864, -0.100000001, 0.179999962, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  486. ManualWeld18.C1 = CFrame.new(-0.464996338, 0.349983215, -0.11000061, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  487. ManualWeld18.Part0 = Part17
  488. ManualWeld18.Part1 = Part19
  489. ManualWeld18.part1 = Part19
  490. Part19.Parent = Tool0
  491. Part19.CFrame = CFrame.new(-4.80299711, 3.90755606, -3.26700211, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  492. Part19.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  493. Part19.Position = Vector3.new(-4.80299711, 3.90755606, -3.26700211)
  494. Part19.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  495. Part19.Color = Color3.new(0.886275, 0.607843, 0.25098)
  496. Part19.Size = Vector3.new(1.12999916, 1.13999975, 0.200000003)
  497. Part19.BottomSurface = Enum.SurfaceType.Smooth
  498. Part19.BrickColor = BrickColor.new("Br. yellowish orange")
  499. Part19.Material = Enum.Material.SmoothPlastic
  500. Part19.TopSurface = Enum.SurfaceType.Smooth
  501. Part19.brickColor = BrickColor.new("Br. yellowish orange")
  502. Part19.FormFactor = Enum.FormFactor.Custom
  503. Part19.formFactor = Enum.FormFactor.Custom
  504. Part20.Parent = Tool0
  505. Part20.CFrame = CFrame.new(-4.92899895, 3.86655307, -3.23800302, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  506. Part20.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  507. Part20.Position = Vector3.new(-4.92899895, 3.86655307, -3.23800302)
  508. Part20.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  509. Part20.Color = Color3.new(0.105882, 0.164706, 0.207843)
  510. Part20.Size = Vector3.new(1.08999991, 1.01999986, 1.44999921)
  511. Part20.BottomSurface = Enum.SurfaceType.Smooth
  512. Part20.BrickColor = BrickColor.new("Black")
  513. Part20.Material = Enum.Material.SmoothPlastic
  514. Part20.TopSurface = Enum.SurfaceType.Smooth
  515. Part20.brickColor = BrickColor.new("Black")
  516. Part20.FormFactor = Enum.FormFactor.Custom
  517. Part20.formFactor = Enum.FormFactor.Custom
  518. Part21.Parent = Tool0
  519. Part21.CFrame = CFrame.new(-5.41389799, 4.20208883, -3.12045884, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  520. Part21.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  521. Part21.Position = Vector3.new(-5.41389799, 4.20208883, -3.12045884)
  522. Part21.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  523. Part21.Color = Color3.new(0.470588, 0.564706, 0.509804)
  524. Part21.Size = Vector3.new(0.909999728, 0.200000003, 0.389999926)
  525. Part21.BottomSurface = Enum.SurfaceType.Smooth
  526. Part21.BrickColor = BrickColor.new("Sand green")
  527. Part21.Material = Enum.Material.CorrodedMetal
  528. Part21.TopSurface = Enum.SurfaceType.Smooth
  529. Part21.brickColor = BrickColor.new("Sand green")
  530. Part21.FormFactor = Enum.FormFactor.Custom
  531. Part21.formFactor = Enum.FormFactor.Custom
  532. Part22.Parent = Tool0
  533. Part22.CFrame = CFrame.new(-5.29160452, 3.77909422, -3.11545777, 0.278012097, -0.273779929, -0.92073524, 0.0670278668, 0.961715579, -0.265726477, 0.958236098, 0.0121602481, 0.285719454)
  534. Part22.Orientation = Vector3.new(15.4099998, -72.7600021, 3.99000001)
  535. Part22.Position = Vector3.new(-5.29160452, 3.77909422, -3.11545777)
  536. Part22.Rotation = Vector3.new(42.9199982, -67.0299988, 44.5599976)
  537. Part22.Color = Color3.new(0.886275, 0.607843, 0.25098)
  538. Part22.Size = Vector3.new(1.12999916, 1.13999939, 0.200000003)
  539. Part22.BottomSurface = Enum.SurfaceType.Smooth
  540. Part22.BrickColor = BrickColor.new("Br. yellowish orange")
  541. Part22.Material = Enum.Material.SmoothPlastic
  542. Part22.TopSurface = Enum.SurfaceType.Smooth
  543. Part22.brickColor = BrickColor.new("Br. yellowish orange")
  544. Part22.FormFactor = Enum.FormFactor.Custom
  545. Part22.formFactor = Enum.FormFactor.Custom
  546. ManualWeld23.Name = "Part-to-Part Strong Joint"
  547. ManualWeld23.Parent = Part22
  548. ManualWeld23.C0 = CFrame.new(-0.56499958, -0.569999695, 0.100000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  549. ManualWeld23.C1 = CFrame.new(-0.564975739, -0.573699951, -0.0868453979, 1, 0, 0, 0, 0.999095559, -0.0425216034, 0, 0.0425216034, 0.999095559)
  550. ManualWeld23.Part0 = Part22
  551. ManualWeld23.Part1 = Part29
  552. ManualWeld23.part1 = Part29
  553. Part24.Parent = Tool0
  554. Part24.CFrame = CFrame.new(-5.32176781, 4.30659056, -2.82580233, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  555. Part24.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  556. Part24.Position = Vector3.new(-5.32176781, 4.30659056, -2.82580233)
  557. Part24.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  558. Part24.Color = Color3.new(0.470588, 0.564706, 0.509804)
  559. Part24.Size = Vector3.new(0.200000003, 0.200000003, 0.359999925)
  560. Part24.BottomSurface = Enum.SurfaceType.Smooth
  561. Part24.BrickColor = BrickColor.new("Sand green")
  562. Part24.Material = Enum.Material.CorrodedMetal
  563. Part24.TopSurface = Enum.SurfaceType.Smooth
  564. Part24.brickColor = BrickColor.new("Sand green")
  565. Part24.FormFactor = Enum.FormFactor.Custom
  566. Part24.formFactor = Enum.FormFactor.Custom
  567. CylinderMesh25.Parent = Part24
  568. Part26.Parent = Tool0
  569. Part26.CFrame = CFrame.new(-4.77399778, 3.47655606, -3.252002, -0.931542099, -0.23437959, -0.278011382, -0.224592015, 0.972138524, -0.0670277104, 0.285976768, 6.1065973e-14, -0.958231091)
  570. Part26.Orientation = Vector3.new(3.83999991, -163.819992, -13.0099993)
  571. Part26.Position = Vector3.new(-4.77399778, 3.47655606, -3.252002)
  572. Part26.Rotation = Vector3.new(176, -16.1399994, 165.87999)
  573. Part26.Color = Color3.new(0.388235, 0.372549, 0.384314)
  574. Part26.Size = Vector3.new(1.29000139, 0.270000249, 1.06999934)
  575. Part26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  576. Part26.BrickColor = BrickColor.new("Dark stone grey")
  577. Part26.Material = Enum.Material.SmoothPlastic
  578. Part26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  579. Part26.brickColor = BrickColor.new("Dark stone grey")
  580. Part26.FormFactor = Enum.FormFactor.Custom
  581. Part26.formFactor = Enum.FormFactor.Custom
  582. Part27.Parent = Tool0
  583. Part27.CFrame = CFrame.new(-4.61331463, 3.00147843, -3.27384472, 0.278011888, -0.234381005, -0.93154341, 0.0670278147, 0.972144127, -0.224592328, 0.958235264, 2.98427949e-13, 0.28597796)
  584. Part27.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  585. Part27.Position = Vector3.new(-4.61331463, 3.00147843, -3.27384472)
  586. Part27.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  587. Part27.Color = Color3.new(0.388235, 0.372549, 0.384314)
  588. Part27.Size = Vector3.new(0.319999993, 1.19000006, 0.310000271)
  589. Part27.BottomSurface = Enum.SurfaceType.Smooth
  590. Part27.BrickColor = BrickColor.new("Dark stone grey")
  591. Part27.Material = Enum.Material.SmoothPlastic
  592. Part27.TopSurface = Enum.SurfaceType.Smooth
  593. Part27.brickColor = BrickColor.new("Dark stone grey")
  594. Part27.FormFactor = Enum.FormFactor.Custom
  595. Part27.formFactor = Enum.FormFactor.Custom
  596. ManualWeld28.Name = "Part-to-Part Strong Joint"
  597. ManualWeld28.Parent = Part27
  598. ManualWeld28.C0 = CFrame.new(-0.159999996, -0.595000029, -0.155000135, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  599. ManualWeld28.C1 = CFrame.new(-0.226734638, 0.119976044, 0.349365234, -8.30531292e-07, 0.999999642, -7.28046963e-13, -1.08592212e-06, -1.60760294e-12, -0.999999642, -0.999999762, -8.30532088e-07, 1.09151006e-06)
  600. ManualWeld28.Part0 = Part27
  601. ManualWeld28.Part1 = Part31
  602. ManualWeld28.part1 = Part31
  603. Part29.Parent = Tool0
  604. Part29.CFrame = CFrame.new(-5.44299507, 3.74255705, -3.06900406, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  605. Part29.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  606. Part29.Position = Vector3.new(-5.44299507, 3.74255705, -3.06900406)
  607. Part29.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  608. Part29.Color = Color3.new(0.886275, 0.607843, 0.25098)
  609. Part29.Size = Vector3.new(1.12999916, 1.19999969, 0.200000003)
  610. Part29.BottomSurface = Enum.SurfaceType.Smooth
  611. Part29.BrickColor = BrickColor.new("Br. yellowish orange")
  612. Part29.Material = Enum.Material.SmoothPlastic
  613. Part29.TopSurface = Enum.SurfaceType.Smooth
  614. Part29.brickColor = BrickColor.new("Br. yellowish orange")
  615. Part29.FormFactor = Enum.FormFactor.Custom
  616. Part29.formFactor = Enum.FormFactor.Custom
  617. Part30.Parent = Tool0
  618. Part30.CFrame = CFrame.new(-5.25299788, 2.70955706, -3.44400406, 0.278012097, -0.808565378, -0.518585861, 0.0670278668, 0.55488205, -0.829224408, 0.958236098, 0.195774809, 0.208460435)
  619. Part30.Orientation = Vector3.new(56.0200005, -68.0999985, 6.88999987)
  620. Part30.Position = Vector3.new(-5.25299788, 2.70955706, -3.44400406)
  621. Part30.Rotation = Vector3.new(75.8899994, -31.2399998, 71.0299988)
  622. Part30.Color = Color3.new(0.388235, 0.372549, 0.384314)
  623. Part30.Size = Vector3.new(0.200000003, 1.19000006, 0.200000003)
  624. Part30.BottomSurface = Enum.SurfaceType.Smooth
  625. Part30.BrickColor = BrickColor.new("Dark stone grey")
  626. Part30.Material = Enum.Material.SmoothPlastic
  627. Part30.TopSurface = Enum.SurfaceType.Smooth
  628. Part30.brickColor = BrickColor.new("Dark stone grey")
  629. Part30.FormFactor = Enum.FormFactor.Custom
  630. Part30.formFactor = Enum.FormFactor.Custom
  631. Part31.Parent = Tool0
  632. Part31.CFrame = CFrame.new(-4.7858963, 2.58105278, -3.48654318, -0.23438032, 0.278012991, 0.931543529, 0.972144663, 0.0670280829, 0.224591509, -2.37513035e-07, 0.958235323, -0.285979062)
  633. Part31.Orientation = Vector3.new(-12.9799995, 107.07, 86.0599976)
  634. Part31.Position = Vector3.new(-4.7858963, 2.58105278, -3.48654318)
  635. Part31.Rotation = Vector3.new(-141.860001, 68.6800003, -130.12999)
  636. Part31.Color = Color3.new(0.388235, 0.372549, 0.384314)
  637. Part31.Size = Vector3.new(0.7099998, 0.200000003, 0.819999993)
  638. Part31.BottomSurface = Enum.SurfaceType.Smooth
  639. Part31.BrickColor = BrickColor.new("Dark stone grey")
  640. Part31.Material = Enum.Material.SmoothPlastic
  641. Part31.TopSurface = Enum.SurfaceType.Smooth
  642. Part31.brickColor = BrickColor.new("Dark stone grey")
  643. Part31.FormFactor = Enum.FormFactor.Custom
  644. Part31.formFactor = Enum.FormFactor.Custom
  645. CylinderMesh32.Parent = Part31
  646. Part33.Parent = Tool0
  647. Part33.CFrame = CFrame.new(-4.5019989, 2.44655704, -3.293998, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  648. Part33.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  649. Part33.Position = Vector3.new(-4.5019989, 2.44655704, -3.293998)
  650. Part33.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  651. Part33.Color = Color3.new(0.388235, 0.372549, 0.384314)
  652. Part33.Size = Vector3.new(0.7099998, 0.200000003, 0.819999993)
  653. Part33.BottomSurface = Enum.SurfaceType.Smooth
  654. Part33.BrickColor = BrickColor.new("Dark stone grey")
  655. Part33.Material = Enum.Material.SmoothPlastic
  656. Part33.TopSurface = Enum.SurfaceType.Smooth
  657. Part33.brickColor = BrickColor.new("Dark stone grey")
  658. Part33.FormFactor = Enum.FormFactor.Custom
  659. Part33.formFactor = Enum.FormFactor.Custom
  660. CylinderMesh34.Parent = Part33
  661. Part35.Parent = Tool0
  662. Part35.CFrame = CFrame.new(-4.33699799, 1.61255896, -3.23600411, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  663. Part35.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  664. Part35.Position = Vector3.new(-4.33699799, 1.61255896, -3.23600411)
  665. Part35.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  666. Part35.Color = Color3.new(0.388235, 0.372549, 0.384314)
  667. Part35.Size = Vector3.new(0.200000003, 0.760000348, 0.200000003)
  668. Part35.BottomSurface = Enum.SurfaceType.Smooth
  669. Part35.BrickColor = BrickColor.new("Dark stone grey")
  670. Part35.Material = Enum.Material.SmoothPlastic
  671. Part35.TopSurface = Enum.SurfaceType.Smooth
  672. Part35.brickColor = BrickColor.new("Dark stone grey")
  673. Part35.FormFactor = Enum.FormFactor.Custom
  674. Part35.formFactor = Enum.FormFactor.Custom
  675. SpecialMesh36.Parent = Part35
  676. SpecialMesh36.MeshId = "http://www.roblox.com/Asset/?id=9753878"
  677. SpecialMesh36.Scale = Vector3.new(1, 2, 1)
  678. SpecialMesh36.MeshType = Enum.MeshType.FileMesh
  679. Part37.Parent = Tool0
  680. Part37.CFrame = CFrame.new(-4.21599817, 1.31255901, -3.27100301, 0.278012097, -0.234381184, -0.931544006, 0.0670278668, 0.972144842, -0.224592462, 0.958236098, 0, 0.285978109)
  681. Part37.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  682. Part37.Position = Vector3.new(-4.21599817, 1.31255901, -3.27100301)
  683. Part37.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  684. Part37.Color = Color3.new(0.388235, 0.372549, 0.384314)
  685. Part37.Size = Vector3.new(0.319999993, 2.31999993, 0.470000207)
  686. Part37.BottomSurface = Enum.SurfaceType.Smooth
  687. Part37.BrickColor = BrickColor.new("Dark stone grey")
  688. Part37.Material = Enum.Material.SmoothPlastic
  689. Part37.TopSurface = Enum.SurfaceType.Smooth
  690. Part37.brickColor = BrickColor.new("Dark stone grey")
  691. Part37.FormFactor = Enum.FormFactor.Custom
  692. Part37.formFactor = Enum.FormFactor.Custom
  693. CylinderMesh38.Parent = Part37
  694. ManualWeld39.Name = "Part-to-Part Strong Joint"
  695. ManualWeld39.Parent = Part37
  696. ManualWeld39.C0 = CFrame.new(-0.159999996, -1.15999997, -0.235000104, -0, 0, -0.99999994, 0, 1, 0, 0.99999994, 0, -0)
  697. ManualWeld39.C1 = CFrame.new(-2.5267334, 0.119953156, 0.419353485, -8.30531235e-07, 0.999999642, -7.28046909e-13, -1.08592201e-06, -1.60760294e-12, -0.999999583, -0.999999702, -8.30532088e-07, 1.09150994e-06)
  698. ManualWeld39.Part0 = Part37
  699. ManualWeld39.Part1 = Part31
  700. ManualWeld39.part1 = Part31
  701. Part40.Parent = Tool0
  702. Part40.CFrame = CFrame.new(-4.14905596, 0.834652781, -3.23684716, 0.278011382, -0.23437959, -0.931542099, 0.0670277104, 0.972138524, -0.224592015, 0.958231091, 6.1065973e-14, 0.285976768)
  703. Part40.Orientation = Vector3.new(12.9799995, -72.9300003, 3.93999982)
  704. Part40.Position = Vector3.new(-4.14905596, 0.834652781, -3.23684716)
  705. Part40.Rotation = Vector3.new(38.1399994, -68.6800003, 40.1299973)
  706. Part40.Color = Color3.new(0.388235, 0.372549, 0.384314)
  707. Part40.Size = Vector3.new(0.200000003, 0.760000348, 0.200000003)
  708. Part40.BottomSurface = Enum.SurfaceType.Smooth
  709. Part40.BrickColor = BrickColor.new("Dark stone grey")
  710. Part40.Material = Enum.Material.SmoothPlastic
  711. Part40.TopSurface = Enum.SurfaceType.Smooth
  712. Part40.brickColor = BrickColor.new("Dark stone grey")
  713. Part40.FormFactor = Enum.FormFactor.Custom
  714. Part40.formFactor = Enum.FormFactor.Custom
  715. SpecialMesh41.Parent = Part40
  716. SpecialMesh41.MeshId = "http://www.roblox.com/Asset/?id=9753878"
  717. SpecialMesh41.Scale = Vector3.new(1, 2, 1)
  718. SpecialMesh41.MeshType = Enum.MeshType.FileMesh
  719. ManualWeld42.Name = "Part-to-Part Strong Joint"
  720. ManualWeld42.Parent = Part40
  721. ManualWeld42.C0 = CFrame.new(0.100000001, -0.380000174, 0.100000001, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  722. ManualWeld42.C1 = CFrame.new(0.120861053, 0.169998646, -0.0866317749, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  723. ManualWeld42.Part0 = Part40
  724. ManualWeld42.Part1 = Part7
  725. ManualWeld42.part1 = Part7
  726. Camera43.Name = "ThumbnailCamera"
  727. Camera43.Parent = Tool0
  728. Camera43.CFrame = CFrame.new(39.8479538, 4.50750256, -54.3884926, 0.999047756, 0.0206688531, -0.0384253263, -0, 0.880678773, 0.473714083, 0.043631494, -0.473262995, 0.879840016)
  729. Camera43.CoordinateFrame = CFrame.new(39.8479538, 4.50750256, -54.3884926, 0.999047756, 0.0206688531, -0.0384253263, -0, 0.880678773, 0.473714083, 0.043631494, -0.473262995, 0.879840016)
  730. Camera43.Focus = CFrame.new(39.9248047, 3.56007147, -56.1481781, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  731. Camera43.focus = CFrame.new(39.9248047, 3.56007147, -56.1481781, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  732. for i,v in pairs(mas:GetChildren()) do
  733. v.Parent = game:GetService("Players").LocalPlayer.Backpack
  734. pcall(function() v:MakeJoints() end)
  735. end
  736. mas:Destroy()
  737. for i,v in pairs(cors) do
  738. spawn(function()
  739. pcall(v)
  740. end)
  741. end
Add Comment
Please, Sign In to add comment