Splitzery

B*tch Boy Baseball

Mar 28th, 2020
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.10 KB | None | 0 0
  1. -- OBLIVION
  2. Player = game.Players.LocalPlayer
  3. Char = Player.Character
  4.  
  5. function sandbox(var,func)
  6. local env = getfenv(func)
  7. local newenv = setmetatable({},{
  8. __index = function(self,k)
  9. if k=="script" then
  10. return var
  11. else
  12. return env[k]
  13. end
  14. end,
  15. })
  16. setfenv(func,newenv)
  17. return func
  18. end
  19. cors = {}
  20. mas = Instance.new("Model",game:GetService("Lighting"))
  21. Tool0 = Instance.new("Tool")
  22. LocalScript1 = Instance.new("LocalScript")
  23. Script2 = Instance.new("Script")
  24. Script3 = Instance.new("Script")
  25. Part4 = Instance.new("Part")
  26. SpecialMesh5 = Instance.new("SpecialMesh")
  27. Script6 = Instance.new("Script")
  28. Script7 = Instance.new("Script")
  29. Sound8 = Instance.new("Sound")
  30. Part9 = Instance.new("Part")
  31. CylinderMesh10 = Instance.new("CylinderMesh")
  32. Script11 = Instance.new("Script")
  33. Part12 = Instance.new("Part")
  34. SpecialMesh13 = Instance.new("SpecialMesh")
  35. Part14 = Instance.new("Part")
  36. Sound15 = Instance.new("Sound")
  37. SpecialMesh16 = Instance.new("SpecialMesh")
  38. Script17 = Instance.new("Script")
  39. Script18 = Instance.new("Script")
  40. Part19 = Instance.new("Part")
  41. SpecialMesh20 = Instance.new("SpecialMesh")
  42. Script21 = Instance.new("Script")
  43. Script22 = Instance.new("Script")
  44. Sound23 = Instance.new("Sound")
  45. Part24 = Instance.new("Part")
  46. SpecialMesh25 = Instance.new("SpecialMesh")
  47. Script26 = Instance.new("Script")
  48. Script27 = Instance.new("Script")
  49. Sound28 = Instance.new("Sound")
  50. Part29 = Instance.new("Part")
  51. SpecialMesh30 = Instance.new("SpecialMesh")
  52. Script31 = Instance.new("Script")
  53. Script32 = Instance.new("Script")
  54. Sound33 = Instance.new("Sound")
  55. Tool0.Name = "RBat HRD V8"
  56. Tool0.Parent = mas
  57. Tool0.Grip = CFrame.new(0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  58. Tool0.GripForward = Vector3.new(-1, -0, -0)
  59. Tool0.GripRight = Vector3.new(0, 1, 0)
  60. Tool0.GripUp = Vector3.new(0, 0, 1)
  61. LocalScript1.Name = "Local Gui"
  62. LocalScript1.Parent = Tool0
  63. table.insert(cors,sandbox(LocalScript1,function()
  64. local Tool = script.Parent;
  65.  
  66. enabled = true
  67. function onButton1Down(mouse)
  68. if not enabled then
  69. return
  70. end
  71.  
  72. enabled = false
  73. mouse.Icon = "rbxasset://textures\\GunWaitCursor.png"
  74.  
  75. wait(.5)
  76. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  77. enabled = true
  78.  
  79. end
  80.  
  81. function onEquippedLocal(mouse)
  82.  
  83. if mouse == nil then
  84. print("Mouse not found")
  85. return
  86. end
  87.  
  88. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  89. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  90. end
  91.  
  92.  
  93. Tool.Equipped:connect(onEquippedLocal)
  94.  
  95. end))
  96. Script2.Parent = Tool0
  97. table.insert(cors,sandbox(Script2,function()
  98. -------- OMG HAX
  99.  
  100. r = game:service("RunService")
  101.  
  102.  
  103. local damage = 0
  104.  
  105.  
  106. local slash_damage = 0
  107. local lunge_damage = 0
  108.  
  109. sword = script.Parent.Handle
  110. Tool = script.Parent
  111.  
  112.  
  113.  
  114. function blow(hit)
  115. if (hit.Parent == nil) then return end -- happens when bullet hits sword
  116.  
  117. local humanoid = hit.Parent:findFirstChild("Humanoid")
  118. local vCharacter = Tool.Parent
  119. local vPlayer = game.Players:playerFromCharacter(vCharacter)
  120. local hum = vCharacter:findFirstChild("Humanoid") -- non-nil if tool held by a character
  121. if humanoid~=nil and humanoid ~= hum and hum ~= nil then
  122. -- final check, make sure sword is in-hand
  123.  
  124. local right_arm = vCharacter:FindFirstChild("Right Arm")
  125. if (right_arm ~= nil) then
  126. local joint = right_arm:FindFirstChild("RightGrip")
  127. if (joint ~= nil and (joint.Part0 == sword or joint.Part1 == sword)) then
  128. tagHumanoid(humanoid, vPlayer)
  129. humanoid:TakeDamage(damage)
  130. wait(1)
  131. untagHumanoid(humanoid)
  132. end
  133. end
  134.  
  135.  
  136. end
  137. end
  138.  
  139.  
  140. function tagHumanoid(humanoid, player)
  141. local creator_tag = Instance.new("ObjectValue")
  142. creator_tag.Value = player
  143. creator_tag.Name = "creator"
  144. creator_tag.Parent = humanoid
  145. end
  146.  
  147. function untagHumanoid(humanoid)
  148. if humanoid ~= nil then
  149. local tag = humanoid:findFirstChild("creator")
  150. if tag ~= nil then
  151. tag.Parent = nil
  152. end
  153. end
  154. end
  155.  
  156.  
  157. function attack()
  158. damage = slash_damage
  159. local anim = Instance.new("StringValue")
  160. anim.Name = "toolanim"
  161. anim.Value = "Slash"
  162. anim.Parent = Tool
  163. end
  164.  
  165. function lunge()
  166. damage = lunge_damage
  167.  
  168. local anim = Instance.new("StringValue")
  169. anim.Name = "toolanim"
  170. anim.Value = "Lunge"
  171. anim.Parent = Tool
  172.  
  173.  
  174. force = Instance.new("BodyVelocity")
  175. force.velocity = Vector3.new(0,10,0) --Tool.Parent.Torso.CFrame.lookVector * 80
  176. force.Parent = Tool.Parent.Torso
  177. wait(.25)
  178. swordOut()
  179. wait(.25)
  180. force.Parent = nil
  181. wait(.5)
  182. swordUp()
  183.  
  184. damage = slash_damage
  185. end
  186.  
  187. function swordUp()
  188. Tool.GripForward = Vector3.new(-1,0,0)
  189. Tool.GripRight = Vector3.new(0,1,0)
  190. Tool.GripUp = Vector3.new(0,0,1)
  191. end
  192.  
  193. function swordOut()
  194. Tool.GripForward = Vector3.new(0,0,-1)
  195. Tool.GripRight = Vector3.new(0,1,0)
  196. Tool.GripUp = Vector3.new(1,0,0)
  197. end
  198.  
  199. function swordAcross()
  200. -- parry
  201. end
  202.  
  203.  
  204. Tool.Enabled = true
  205. local last_attack = 0
  206. function onActivated()
  207.  
  208. if not Tool.Enabled then
  209. return
  210. end
  211.  
  212. Tool.Enabled = false
  213.  
  214. local character = Tool.Parent;
  215. local humanoid = character.Humanoid
  216. if humanoid == nil then
  217. print("Humanoid not found")
  218. return
  219. end
  220.  
  221. t = r.Stepped:wait()
  222.  
  223. if (t - last_attack < .2) then
  224. lunge()
  225. else
  226. attack()
  227. end
  228.  
  229. last_attack = t
  230.  
  231. --wait(.5)
  232.  
  233. Tool.Enabled = true
  234. end
  235.  
  236.  
  237. function onEquipped()
  238. script.Parent.Parent.Humanoid.WalkSpeed = 16
  239. end
  240.  
  241. function unEquipped()
  242. game.Players:findFirstChild(script.Parent.Parent.Parent.Name).Character.Humanoid.WalkSpeed = 16
  243.  
  244. end
  245.  
  246. script.Parent.Equipped:connect(onEquipped)
  247. script.Parent.Unequipped:connect(unEquipped)
  248. script.Parent.Activated:connect(onActivated)
  249.  
  250.  
  251.  
  252. connection = sword.Touched:connect(blow)
  253.  
  254.  
  255.  
  256. end))
  257. Script3.Name = "Weld Script"
  258. Script3.Parent = Tool0
  259. table.insert(cors,sandbox(Script3,function()
  260. --Simply put it inside any model with bricks inside
  261. local prev
  262. local parts = script.Parent:GetChildren()
  263.  
  264. for i = 1,#parts do
  265. if (parts[i].className == "Part") then
  266. if (prev ~= nil)then
  267. local weld = Instance.new("Weld")
  268. weld.Part0 = prev
  269. weld.Part1 = parts[i]
  270. weld.C0 = prev.CFrame:inverse()
  271. weld.C1 = parts[i].CFrame:inverse()
  272. weld.Parent = prev
  273. end
  274. prev = parts[i]
  275. end
  276. end
  277.  
  278. end))
  279. Part4.Name = "End"
  280. Part4.Parent = Tool0
  281. Part4.CFrame = CFrame.new(42.0648499, 5.42735291, 27.7283936, -0.999930859, 0.0104816128, 0.00533350464, 0.0104727102, 0.999943733, -0.00169444236, -0.00535096461, -0.00163846882, -0.999984324)
  282. Part4.Orientation = Vector3.new(0.100000001, 179.690002, 0.600000024)
  283. Part4.Position = Vector3.new(42.0648499, 5.42735291, 27.7283936)
  284. Part4.Rotation = Vector3.new(179.899994, 0.310000002, -179.399994)
  285. Part4.Color = Color3.new(0.835294, 0.45098, 0.239216)
  286. Part4.Size = Vector3.new(0.803968728, 1.15839183, 0.992553949)
  287. Part4.BottomSurface = Enum.SurfaceType.Smooth
  288. Part4.BrickColor = BrickColor.new("Neon orange")
  289. Part4.TopSurface = Enum.SurfaceType.Smooth
  290. Part4.brickColor = BrickColor.new("Neon orange")
  291. Part4.FormFactor = Enum.FormFactor.Custom
  292. Part4.formFactor = Enum.FormFactor.Custom
  293. SpecialMesh5.Parent = Part4
  294. SpecialMesh5.Scale = Vector3.new(0.850000024, 1, 0.850000024)
  295. Script6.Parent = Part4
  296. table.insert(cors,sandbox(Script6,function()
  297. function x(hit)
  298. if hit.Name == "Ball" then
  299. hit.Velocity = script.Parent.Parent.Parent.Head.CFrame.lookVector * math.floor((math.random() * 200) + 40) + Vector3.new (0,math.floor((math.random() * 130) + 120) ,0)
  300. end
  301. end
  302.  
  303. script.Parent.Touched:connect(x)
  304. end))
  305. Script7.Parent = Part4
  306. table.insert(cors,sandbox(Script7,function()
  307. function onTouched(hit)
  308. if hit.Name == "Ball" then
  309. s = script.Parent.Ting
  310. s:play()
  311. wait(.1)
  312. s1 = script.Parent.sda
  313. s1:play()
  314. end
  315. end
  316. script.Parent.Touched:connect(onTouched)
  317. end))
  318. Sound8.Name = "Ting"
  319. Sound8.Parent = Part4
  320. Sound8.Pitch = 0.80000001192093
  321. Sound8.PlaybackSpeed = 0.80000001192093
  322. Sound8.SoundId = "http://www.roblox.com/asset/?id=174300141"
  323. Sound8.Volume = 1
  324. Part9.Name = "Handle"
  325. Part9.Parent = Tool0
  326. Part9.CFrame = CFrame.new(42.0177917, 0.935705006, 27.7304688, -0.999926269, 0.0104809031, 0.00533590326, 0.0104726618, 0.999934793, -0.00169476983, -0.00535094738, -0.00163859373, -0.999974489)
  327. Part9.Orientation = Vector3.new(0.100000001, 179.690002, 0.600000024)
  328. Part9.Position = Vector3.new(42.0177917, 0.935705006, 27.7304688)
  329. Part9.Rotation = Vector3.new(179.899994, 0.310000002, -179.399994)
  330. Part9.Color = Color3.new(0.411765, 0.25098, 0.156863)
  331. Part9.Size = Vector3.new(0.992553949, 1.16128814, 0.992553949)
  332. Part9.BottomSurface = Enum.SurfaceType.Smooth
  333. Part9.BrickColor = BrickColor.new("Reddish brown")
  334. Part9.TopSurface = Enum.SurfaceType.Smooth
  335. Part9.brickColor = BrickColor.new("Reddish brown")
  336. Part9.FormFactor = Enum.FormFactor.Custom
  337. Part9.formFactor = Enum.FormFactor.Custom
  338. CylinderMesh10.Parent = Part9
  339. CylinderMesh10.Scale = Vector3.new(0.449999988, 1.25, 0.550000012)
  340. Script11.Parent = Part9
  341. table.insert(cors,sandbox(Script11,function()
  342. function x(hit)
  343. if hit.Name == "Ball" then
  344. hit.Velocity = script.Parent.Parent.Parent.Head.CFrame.lookVector * math.floor((math.random() * 200) + 60) + Vector3.new (0,math.floor((math.random() * 20) + 10) ,0)
  345. end
  346. end
  347.  
  348. script.Parent.Touched:connect(x)
  349. end))
  350. Part12.Name = "Handle2"
  351. Part12.Parent = Tool0
  352. Part12.CFrame = CFrame.new(42.0100403, 0.204554006, 27.7369995, -0.999930859, 0.0104815969, 0.00533351442, 0.0104726944, 0.999943733, -0.00169444305, -0.00535097532, -0.00163846952, -0.999984324)
  353. Part12.Orientation = Vector3.new(0.100000001, 179.690002, 0.600000024)
  354. Part12.Position = Vector3.new(42.0100403, 0.204554006, 27.7369995)
  355. Part12.Rotation = Vector3.new(179.899994, 0.310000002, -179.399994)
  356. Part12.Color = Color3.new(0.835294, 0.45098, 0.239216)
  357. Part12.Size = Vector3.new(0.992553949, 0.397021562, 0.992553949)
  358. Part12.BottomSurface = Enum.SurfaceType.Smooth
  359. Part12.BrickColor = BrickColor.new("Neon orange")
  360. Part12.TopSurface = Enum.SurfaceType.Smooth
  361. Part12.brickColor = BrickColor.new("Neon orange")
  362. Part12.FormFactor = Enum.FormFactor.Custom
  363. Part12.formFactor = Enum.FormFactor.Custom
  364. SpecialMesh13.Parent = Part12
  365. SpecialMesh13.Scale = Vector3.new(0.800000012, 0.800000012, 0.800000012)
  366. Part14.Name = "Handle3"
  367. Part14.Parent = Tool0
  368. Part14.CFrame = CFrame.new(42.0294189, 2.05886102, 27.7335205, -0.999928117, 0.0104809161, 0.00533565786, 0.0104726814, 0.999937654, -0.001694637, -0.00535148662, -0.00163846218, -0.999977827)
  369. Part14.Orientation = Vector3.new(0.100000001, 179.690002, 0.600000024)
  370. Part14.Position = Vector3.new(42.0294189, 2.05886102, 27.7335205)
  371. Part14.Rotation = Vector3.new(179.899994, 0.310000002, -179.399994)
  372. Part14.Color = Color3.new(0.835294, 0.45098, 0.239216)
  373. Part14.Size = Vector3.new(0.802976191, 0.959577203, 0.992553949)
  374. Part14.BottomSurface = Enum.SurfaceType.Smooth
  375. Part14.BrickColor = BrickColor.new("Neon orange")
  376. Part14.TopSurface = Enum.SurfaceType.Smooth
  377. Part14.brickColor = BrickColor.new("Neon orange")
  378. Part14.FormFactor = Enum.FormFactor.Custom
  379. Part14.formFactor = Enum.FormFactor.Custom
  380. Sound15.Name = "Ting"
  381. Sound15.Parent = Part14
  382. Sound15.Pitch = 0.80000001192093
  383. Sound15.PlaybackSpeed = 0.80000001192093
  384. Sound15.SoundId = "http://www.roblox.com/asset/?id=174300141"
  385. Sound15.Volume = 1
  386. SpecialMesh16.Parent = Part14
  387. SpecialMesh16.Scale = Vector3.new(0.850000024, 1, 0.850000024)
  388. Script17.Parent = Part14
  389. table.insert(cors,sandbox(Script17,function()
  390. function onTouched(hit)
  391. if hit.Name == "Ball" then
  392. s = script.Parent.Ting
  393. s:play()
  394. wait(.1)
  395. s1 = script.Parent.sda
  396. s1:play()
  397. end
  398. end
  399. script.Parent.Touched:connect(onTouched)
  400. end))
  401. Script18.Parent = Part14
  402. table.insert(cors,sandbox(Script18,function()
  403. function x(hit)
  404. if hit.Name == "Ball" then
  405. hit.Velocity = script.Parent.Parent.Parent.Head.CFrame.lookVector * math.floor((math.random() * 220) + 30) + Vector3.new (0,math.floor((math.random() * 80) + 105) ,0)
  406. end
  407. end
  408.  
  409. script.Parent.Touched:connect(x)
  410. end))
  411. Part19.Name = "Middle"
  412. Part19.Parent = Tool0
  413. Part19.CFrame = CFrame.new(42.0471802, 3.74142003, 27.7310181, -0.999926925, 0.0104808966, 0.0053359149, 0.0104726683, 0.999935746, -0.00169463619, -0.00535121188, -0.00163845927, -0.999975681)
  414. Part19.Orientation = Vector3.new(0.100000001, 179.690002, 0.600000024)
  415. Part19.Position = Vector3.new(42.0471802, 3.74142003, 27.7310181)
  416. Part19.Rotation = Vector3.new(179.899994, 0.310000002, -179.399994)
  417. Part19.Color = Color3.new(0.835294, 0.45098, 0.239216)
  418. Part19.Size = Vector3.new(0.768236756, 0.337793261, 0.992553949)
  419. Part19.BottomSurface = Enum.SurfaceType.Smooth
  420. Part19.BrickColor = BrickColor.new("Neon orange")
  421. Part19.TopSurface = Enum.SurfaceType.Smooth
  422. Part19.brickColor = BrickColor.new("Neon orange")
  423. Part19.FormFactor = Enum.FormFactor.Custom
  424. Part19.formFactor = Enum.FormFactor.Custom
  425. SpecialMesh20.Parent = Part19
  426. SpecialMesh20.Scale = Vector3.new(0.889999986, 5, 1.85000002)
  427. Script21.Parent = Part19
  428. table.insert(cors,sandbox(Script21,function()
  429. function x(hit)
  430. if hit.Name == "Ball" then
  431. hit.Velocity = script.Parent.Parent.Parent.Head.CFrame.lookVector * math.floor((math.random() * 200) + 70) + Vector3.new (0,math.floor((math.random() * 139) + 135) ,0)
  432. end
  433. end
  434.  
  435. script.Parent.Touched:connect(x)
  436. end))
  437. Script22.Parent = Part19
  438. table.insert(cors,sandbox(Script22,function()
  439. function onTouched(hit)
  440. if hit.Name == "Ball" then
  441. s = script.Parent.Ting
  442. s:play()
  443. wait(.1)
  444. s1 = script.Parent.sda
  445. s1:play()
  446. end
  447. end
  448. script.Parent.Touched:connect(onTouched)
  449. end))
  450. Sound23.Name = "Ting"
  451. Sound23.Parent = Part19
  452. Sound23.Pitch = 0.80000001192093
  453. Sound23.PlaybackSpeed = 0.80000001192093
  454. Sound23.SoundId = "http://www.roblox.com/asset/?id=174300141"
  455. Sound23.Volume = 1
  456. Part24.Name = "Middle-End"
  457. Part24.Parent = Tool0
  458. Part24.CFrame = CFrame.new(42.0541992, 4.4114809, 27.7306519, -0.9999277, 0.0104811387, 0.00533429394, 0.0104726786, 0.999937773, -0.00169456133, -0.00535014272, -0.00163846125, -0.999977767)
  459. Part24.Orientation = Vector3.new(0.100000001, 179.690002, 0.600000024)
  460. Part24.Position = Vector3.new(42.0541992, 4.4114809, 27.7306519)
  461. Part24.Rotation = Vector3.new(179.899994, 0.310000002, -179.399994)
  462. Part24.Color = Color3.new(0.835294, 0.45098, 0.239216)
  463. Part24.Size = Vector3.new(0.768236756, 0.59955591, 0.992553949)
  464. Part24.BottomSurface = Enum.SurfaceType.Smooth
  465. Part24.BrickColor = BrickColor.new("Neon orange")
  466. Part24.TopSurface = Enum.SurfaceType.Smooth
  467. Part24.brickColor = BrickColor.new("Neon orange")
  468. Part24.FormFactor = Enum.FormFactor.Custom
  469. Part24.formFactor = Enum.FormFactor.Custom
  470. SpecialMesh25.Parent = Part24
  471. SpecialMesh25.Scale = Vector3.new(0.889999986, 5, 1.85000002)
  472. Script26.Parent = Part24
  473. table.insert(cors,sandbox(Script26,function()
  474. function x(hit)
  475. if hit.Name == "Ball" then
  476. hit.Velocity = script.Parent.Parent.Parent.Head.CFrame.lookVector * math.floor((math.random() * 200) + 70) + Vector3.new (0,math.floor((math.random() * 130) + 125) ,0)
  477. end
  478. end
  479.  
  480. script.Parent.Touched:connect(x)
  481. end))
  482. Script27.Parent = Part24
  483. table.insert(cors,sandbox(Script27,function()
  484. function onTouched(hit)
  485. if hit.Name == "Ball" then
  486. s = script.Parent.Ting
  487. s:play()
  488. wait(.1)
  489. s1 = script.Parent.sda
  490. s1:play()
  491. end
  492. end
  493. script.Parent.Touched:connect(onTouched)
  494. end))
  495. Sound28.Name = "Ting"
  496. Sound28.Parent = Part24
  497. Sound28.Pitch = 0.80000001192093
  498. Sound28.PlaybackSpeed = 0.80000001192093
  499. Sound28.SoundId = "http://www.roblox.com/asset/?id=174300141"
  500. Sound28.Volume = 1
  501. Part29.Name = "Middle-Handle"
  502. Part29.Parent = Tool0
  503. Part29.CFrame = CFrame.new(42.0414429, 3.03488803, 27.7324219, -0.999930799, 0.0104816109, 0.00533296773, 0.0104727084, 0.999943733, -0.00169443665, -0.00535042724, -0.00163846882, -0.999984324)
  504. Part29.Orientation = Vector3.new(0.100000001, 179.690002, 0.600000024)
  505. Part29.Position = Vector3.new(42.0414429, 3.03488803, 27.7324219)
  506. Part29.Rotation = Vector3.new(179.899994, 0.310000002, -179.399994)
  507. Part29.Color = Color3.new(0.835294, 0.45098, 0.239216)
  508. Part29.Size = Vector3.new(0.768236756, 0.643840134, 0.992553949)
  509. Part29.BottomSurface = Enum.SurfaceType.Smooth
  510. Part29.BrickColor = BrickColor.new("Neon orange")
  511. Part29.TopSurface = Enum.SurfaceType.Smooth
  512. Part29.brickColor = BrickColor.new("Neon orange")
  513. Part29.FormFactor = Enum.FormFactor.Custom
  514. Part29.formFactor = Enum.FormFactor.Custom
  515. SpecialMesh30.Parent = Part29
  516. SpecialMesh30.Scale = Vector3.new(0.889999986, 5, 1.85000002)
  517. Script31.Parent = Part29
  518. table.insert(cors,sandbox(Script31,function()
  519. function x(hit)
  520. if hit.Name == "Ball" then
  521. hit.Velocity = script.Parent.Parent.Parent.Head.CFrame.lookVector * math.floor((math.random() * 200) + 70) + Vector3.new (0,math.floor((math.random() * 119) + 115) ,0)
  522. end
  523. end
  524.  
  525. script.Parent.Touched:connect(x)
  526. end))
  527. Script32.Parent = Part29
  528. table.insert(cors,sandbox(Script32,function()
  529. function onTouched(hit)
  530. if hit.Name == "Ball" then
  531. s = script.Parent.Ting
  532. s:play()
  533. wait(.1)
  534. s1 = script.Parent.sda
  535. s1:play()
  536. end
  537. end
  538. script.Parent.Touched:connect(onTouched)
  539. end))
  540. Sound33.Name = "Ting"
  541. Sound33.Parent = Part29
  542. Sound33.Pitch = 0.80000001192093
  543. Sound33.PlaybackSpeed = 0.80000001192093
  544. Sound33.SoundId = "http://www.roblox.com/asset/?id=174300141"
  545. Sound33.Volume = 1
  546. for i,v in pairs(mas:GetChildren()) do
  547. v.Parent = Player.Backpack
  548. pcall(function() v:MakeJoints() end)
  549. end
  550. mas:Destroy()
  551. for i,v in pairs(cors) do
  552. spawn(function()
  553. pcall(v)
  554. end)
  555. end
Add Comment
Please, Sign In to add comment