Advertisement
zombieslayerwtf

Pepsi [Leaked]

Jun 6th, 2018
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.64 KB | None | 0 0
  1. --[[
  2. Script Version 1
  3.  
  4. CocaCola on steroids!
  5.  
  6. Script by DarkShadow6
  7. --]]
  8.  
  9.  
  10. if script == nil then return end
  11.  
  12.  
  13. Player = game.Players:FindFirstChild("zombieslayerwtf")
  14. Name = "Pepsi"
  15. selected = false
  16. Button1Down = false
  17. canUse = true
  18.  
  19.  
  20. function makeParts(format)
  21. local bottle = Instance.new("Model")
  22. bottle.Name = Name
  23. bottle.Parent = Player.Character
  24. local pm = Instance.new("Part")
  25. pm.Name = "Handle"
  26. pm.FormFactor = "Custom"
  27. pm.Size = Vector3.new(1, 1, 1)
  28. pm.BrickColor = BrickColor.new("Medium stone grey")
  29. pm.Reflectance = 0.2
  30. pm.Locked = true
  31. pm.TopSurface = 0
  32. pm.BottomSurface = 0
  33. pm.Parent = bottle
  34. local m = Instance.new("CylinderMesh")
  35. m.Scale = Vector3.new(0.8, 1.1, 0.8)
  36. m.Parent = pm
  37. local d = Instance.new("Decal")
  38. d.Texture = "http://www.roblox.com/Asset/?id=34399263"
  39. d.Parent = pm
  40. local w = Instance.new("Weld")
  41. w.Part0 = pm
  42. if format == "hand" then
  43. w.Part1 = Player.Character:FindFirstChild("Right Arm")
  44. w.C0 = CFrame.new(0, 0, 1.2) * CFrame.fromEulerAnglesXYZ(math.rad(90), 0, 0)
  45. w.C1 = CFrame.new()
  46. d.Face = "Front"
  47. elseif format == "holster" then
  48. w.Part1 = Player.Character:FindFirstChild("Left Leg")
  49. w.C0 = CFrame.new(0, -0.4, -0.5)
  50. w.C1 = CFrame.new()
  51. d.Face = "Back"
  52. bottle.Name = Name.. " (Holstered)"
  53. end
  54. w.Parent = pm
  55. local s = Instance.new("Sound")
  56. s.Name = "Drink"
  57. s.SoundId = "http://www.roblox.com/Asset/?id=10722059"
  58. s.Volume = 1
  59. s.Pitch = 1
  60. s.Looped = false
  61. s.Parent = pm
  62. local s = Instance.new("Sound")
  63. s.Name = "Open"
  64. s.SoundId = "http://www.roblox.com/Asset/?id=10721950"
  65. s.Volume = 1
  66. s.Pitch = 1.5
  67. s.Looped = false
  68. s.Parent = pm
  69. local s = Instance.new("Sound")
  70. s.Name = "Throw"
  71. s.SoundId = "http://www.roblox.com/Asset/?id=18426149"
  72. s.Volume = 1
  73. s.Pitch = 1
  74. s.Looped = false
  75. s.Parent = pm
  76. end
  77.  
  78.  
  79. function removeParts(format)
  80. if format == "hand" then
  81. if Player.Character:FindFirstChild(Name) ~= nil then
  82. Player.Character[Name]:Remove()
  83. end
  84. elseif format == "holster" then
  85. if Player.Character:FindFirstChild(Name.. " (Holstered)") ~= nil then
  86. Player.Character[Name.. " (Holstered)"]:Remove()
  87. end
  88. end
  89. end
  90.  
  91.  
  92. function SetAngle(Joint, Angle, Character)
  93. if Character == nil then return false end
  94. local Joints = {
  95. Character.Torso:FindFirstChild("Right Shoulder 2"),
  96. Character.Torso:FindFirstChild("Left Shoulder 2"),
  97. Character.Torso:FindFirstChild("Right Hip 2"),
  98. Character.Torso:FindFirstChild("Left Hip 2")
  99. }
  100. if Joints[Joint] == nil then return false end
  101. if Joint == 1 or Joint == 3 then
  102. Joints[Joint].DesiredAngle = Angle
  103. end
  104. if Joint == 2 or Joint == 4 then
  105. Joints[Joint].DesiredAngle = -Angle
  106. end
  107. end
  108.  
  109.  
  110. function ForceAngle(Joint, Angle, Character)
  111. if Character == nil then return false end
  112. local Joints = {
  113. Character.Torso:FindFirstChild("Right Shoulder 2"),
  114. Character.Torso:FindFirstChild("Left Shoulder 2"),
  115. Character.Torso:FindFirstChild("Right Hip 2"),
  116. Character.Torso:FindFirstChild("Left Hip 2")
  117. }
  118. if Joints[Joint] == nil then return false end
  119. if Joint == 1 or Joint == 3 then
  120. Joints[Joint].DesiredAngle = Angle
  121. Joints[Joint].CurrentAngle = Angle
  122. end
  123. if Joint == 2 or Joint == 4 then
  124. Joints[Joint].DesiredAngle = -Angle
  125. Joints[Joint].CurrentAngle = -Angle
  126. end
  127. end
  128.  
  129.  
  130. function SetSpeed(Joint, Speed, Character)
  131. if Character == nil then return false end
  132. local Joints = {
  133. Character.Torso:FindFirstChild("Right Shoulder 2"),
  134. Character.Torso:FindFirstChild("Left Shoulder 2"),
  135. Character.Torso:FindFirstChild("Right Hip 2"),
  136. Character.Torso:FindFirstChild("Left Hip 2")
  137. }
  138. if Joints[Joint] == nil then return false end
  139. Joints[Joint].MaxVelocity = Speed
  140. end
  141.  
  142.  
  143. function DisableLimb(Limb, Character)
  144. if Character == nil then return false end
  145. if Character:FindFirstChild("Torso") == nil then return false end
  146. local Joints = {
  147. Character.Torso:FindFirstChild("Right Shoulder"),
  148. Character.Torso:FindFirstChild("Left Shoulder"),
  149. Character.Torso:FindFirstChild("Right Hip"),
  150. Character.Torso:FindFirstChild("Left Hip")
  151. }
  152. local Limbs = {
  153. Character:FindFirstChild("Right Arm"),
  154. Character:FindFirstChild("Left Arm"),
  155. Character:FindFirstChild("Right Leg"),
  156. Character:FindFirstChild("Left Leg")
  157. }
  158. if Joints[Limb] == nil then return false end
  159. if Limbs[Limb] == nil then return false end
  160. local Joint = Instance.new("Motor")
  161. Joint.Parent = Character.Torso
  162. Joint.Part0 = Character.Torso
  163. Joint.Part1 = Limbs[Limb]
  164. if Limb == 1 then
  165. Joint.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  166. Joint.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  167. Joint.Name = "Right Shoulder 2"
  168. elseif Limb == 2 then
  169. Joint.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  170. Joint.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  171. Joint.Name = "Left Shoulder 2"
  172. elseif Limb == 3 then
  173. Joint.C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  174. Joint.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  175. Joint.Name = "Right Hip 2"
  176. elseif Limb == 4 then
  177. Joint.C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  178. Joint.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  179. Joint.Name = "Left Hip 2"
  180. end
  181. Joint.MaxVelocity = Joints[Limb].MaxVelocity
  182. Joint.CurrentAngle = Joints[Limb].CurrentAngle
  183. Joint.DesiredAngle = Joints[Limb].DesiredAngle
  184. Joints[Limb]:Remove()
  185. end
  186.  
  187.  
  188. function ResetLimbCFrame(Limb, Character)
  189. if Character == nil then return false end
  190. if Character.Parent == nil then return false end
  191. if Character:FindFirstChild("Torso") == nil then return false end
  192. local Joints = {
  193. Character.Torso:FindFirstChild("Right Shoulder 2"),
  194. Character.Torso:FindFirstChild("Left Shoulder 2"),
  195. Character.Torso:FindFirstChild("Right Hip 2"),
  196. Character.Torso:FindFirstChild("Left Hip 2")
  197. }
  198. local Limbs = {
  199. Character:FindFirstChild("Right Arm"),
  200. Character:FindFirstChild("Left Arm"),
  201. Character:FindFirstChild("Right Leg"),
  202. Character:FindFirstChild("Left Leg")
  203. }
  204. if Joints[Limb] == nil then return false end
  205. if Limbs[Limb] == nil then return false end
  206. if Limb == 1 then
  207. Joints[Limb].C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  208. Joints[Limb].C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  209. elseif Limb == 2 then
  210. Joints[Limb].C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  211. Joints[Limb].C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  212. elseif Limb == 3 then
  213. Joints[Limb].C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  214. Joints[Limb].C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  215. elseif Limb == 4 then
  216. Joints[Limb].C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  217. Joints[Limb].C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  218. end
  219. end
  220.  
  221.  
  222. function EnableLimb(Limb, Character)
  223. if Character == nil then return false end
  224. if Character:FindFirstChild("Torso") == nil then return false end
  225. local Joints = {
  226. Character.Torso:FindFirstChild("Right Shoulder 2"),
  227. Character.Torso:FindFirstChild("Left Shoulder 2"),
  228. Character.Torso:FindFirstChild("Right Hip 2"),
  229. Character.Torso:FindFirstChild("Left Hip 2")
  230. }
  231. local Limbs = {
  232. Character:FindFirstChild("Right Arm"),
  233. Character:FindFirstChild("Left Arm"),
  234. Character:FindFirstChild("Right Leg"),
  235. Character:FindFirstChild("Left Leg")
  236. }
  237. if Joints[Limb] == nil then return false end
  238. if Limbs[Limb] == nil then return false end
  239. if Limb == 1 then
  240. Joints[Limb].Name = "Right Shoulder"
  241. elseif Limb == 2 then
  242. Joints[Limb].Name = "Left Shoulder"
  243. elseif Limb == 3 then
  244. Joints[Limb].Name = "Right Hip"
  245. elseif Limb == 4 then
  246. Joints[Limb].Name = "Left Hip"
  247. end
  248. for i = 1, #Joints do
  249. if Joints[i] == nil then
  250. local Joint = Instance.new("Motor")
  251. if i == 1 then
  252. Joint.Name = "Right Shoulder"
  253. elseif i == 2 then
  254. Joint.Name = "Left Shoulder"
  255. elseif i == 3 then
  256. Joint.Name = "Right Hip"
  257. elseif i == 4 then
  258. Joint.Name = "Left Hip"
  259. end
  260. Joint.Parent = Character.Torso
  261. end
  262. end
  263. Animate = Character:FindFirstChild("Animate")
  264. if Animate == nil then return false end
  265. Animate = Animate:Clone()
  266. Character.Animate:Remove()
  267. Animate.Parent = Character
  268. end
  269.  
  270.  
  271. function playAnimation(format, mouse)
  272. if format == "normal" then
  273. if Player.Character:FindFirstChild("Torso") ~= nil then
  274. for i = 10, 0, -1 do
  275. if Player.Character.Torso:FindFirstChild("Right Shoulder 2") ~= nil then
  276. Player.Character.Torso["Right Shoulder 2"].C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(100 - i), 0)
  277. Player.Character.Torso["Right Shoulder 2"].C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-3), math.rad(90), 0)
  278. else return false end
  279. wait()
  280. end
  281. else return false end
  282. end
  283. if format == "drinkStart" then
  284. if Player.Character:FindFirstChild("Torso") ~= nil then
  285. for i = 0, 10, 1 do
  286. if Player.Character.Torso:FindFirstChild("Right Shoulder 2") ~= nil then
  287. Player.Character.Torso["Right Shoulder 2"].C0 = CFrame.new(1.5 - i / 50, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(100 + i * 3.5), 0)
  288. Player.Character.Torso["Right Shoulder 2"].C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-3), math.rad(90), 0)
  289. end
  290. wait()
  291. end
  292. end
  293. end
  294. if format == "drinkLoopStart" then
  295. if Player.Character:FindFirstChild("Torso") ~= nil then
  296. for i = 0, 10, 1 do
  297. if Player.Character.Torso:FindFirstChild("Right Shoulder 2") ~= nil then
  298. Player.Character.Torso["Right Shoulder 2"].C0 = CFrame.new(1.25, 0.5, 0) * CFrame.fromEulerAnglesXYZ(math.rad(i * 2), math.rad(135), 0)
  299. Player.Character.Torso["Right Shoulder 2"].C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-3), math.rad(90), 0)
  300. end
  301. wait()
  302. end
  303. end
  304. end
  305. if format == "drinkLoopStop" then
  306. if Player.Character:FindFirstChild("Torso") ~= nil then
  307. for i = 10, 0, -1 do
  308. if Player.Character.Torso:FindFirstChild("Right Shoulder 2") ~= nil then
  309. Player.Character.Torso["Right Shoulder 2"].C0 = CFrame.new(1.25, 0.5, 0) * CFrame.fromEulerAnglesXYZ(math.rad(i * 2), math.rad(135), 0)
  310. Player.Character.Torso["Right Shoulder 2"].C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-3), math.rad(90), 0)
  311. end
  312. wait()
  313. end
  314. end
  315. end
  316. if format == "drinkStop" then
  317. if Player.Character:FindFirstChild("Torso") ~= nil then
  318. for i = 10, 0, -1 do
  319. if Player.Character.Torso:FindFirstChild("Right Shoulder 2") ~= nil then
  320. Player.Character.Torso["Right Shoulder 2"].C0 = CFrame.new(1.5 - i / 50, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(100 + i * 3.5), 0)
  321. Player.Character.Torso["Right Shoulder 2"].C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-3), math.rad(90), 0)
  322. end
  323. wait()
  324. end
  325. end
  326. end
  327. end
  328.  
  329.  
  330. function Weld(x, y)
  331. weld = Instance.new("Weld")
  332. weld.Part0 = x
  333. weld.Part1 = y
  334. CJ = CFrame.new(x.Position)
  335. C0 = x.CFrame:inverse() * CJ
  336. C1 = y.CFrame:inverse() * CJ
  337. weld.C0 = C0
  338. weld.C1 = C1
  339. weld.Parent = x
  340. end
  341.  
  342.  
  343. loadstring(game:GetService("InsertService"):LoadAsset(65363615)["tagHumanoid"].Value)()
  344.  
  345.  
  346. function onButton1Down(mouse)
  347. if selected == false then return end
  348. if Player.Character:FindFirstChild(Name) ~= nil and Button1Down ~= true and canUse == true then
  349. if Player.Character[Name]:FindFirstChild("Handle") == nil then return end
  350. Button1Down = true
  351. canUse = false
  352. mouse.Icon = "rbxasset://textures\\GunWaitCursor.png"
  353. if open.Value == false then
  354. Player.Character[Name].Handle.Open:Play()
  355. wait(0.5)
  356. open.Value = true
  357. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  358. canUse = true
  359. elseif contents.Value > 0 then
  360. playAnimation("drinkStart", mouse)
  361. while contents.Value > 0 and Button1Down == true do
  362. local delta = math.random(3, 10)
  363. contents.Value = contents.Value - delta
  364. if contents.Value < 0 then contents.Value = 0 end
  365. script.Parent.Name = tostring(contents.Value).. "%"
  366. if Player.Character == nil then break end
  367. if Player.Character:FindFirstChild(Name) == nil then break end
  368. if Player.Character[Name]:FindFirstChild("Handle") == nil then break end
  369. if Player.Character:FindFirstChild("Humanoid") == nil then break end
  370. Player.Character.Humanoid.Health = Player.Character.Humanoid.Health + (delta / 2)
  371. Player.Character[Name].Handle.Drink.Volume = math.random(50, 80) / 100
  372. Player.Character[Name].Handle.Drink.Pitch = math.random(90, 110) / 100
  373. Player.Character[Name].Handle.Drink:Play()
  374. coroutine.resume(coroutine.create(function() playAnimation("drinkLoopStart", mouse) end))
  375. wait(math.random(9, 11) / 10)
  376. coroutine.resume(coroutine.create(function() playAnimation("drinkLoopStop", mouse) end))
  377. Player.Character[Name].Handle.Drink:Stop()
  378. wait(0.3)
  379. end
  380. playAnimation("drinkStop", mouse)
  381. script.Parent.Name = Name
  382. canUse = true
  383. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  384. else
  385. canUse = true
  386. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  387. end
  388. end
  389. end
  390.  
  391.  
  392. function onButton1Up(mouse)
  393. if selected == false then return end
  394. Button1Down = false
  395. end
  396.  
  397.  
  398. function onKeyDown(key, mouse)
  399. if selected == false then return end
  400. key = key:lower()
  401. if key == "q" and Button1Down == false and canUse == true then
  402. if mouse.Target == nil then return end
  403. if game:GetService("Players"):GetPlayerFromCharacter(mouse.Target.Parent) ~= nil then
  404. onDeselected(mouse)
  405. removeParts("holster")
  406. script.Parent.Parent = game:GetService("Players"):GetPlayerFromCharacter(mouse.Target.Parent).Backpack
  407. end
  408. end
  409. if key == "z" and Button1Down == false and canUse == true then
  410. if Player.Character:FindFirstChild(Name) == nil then makeParts("hand") end
  411. if Player.Character[Name]:FindFirstChild("Handle") == nil then return end
  412. canUse = false
  413. SetAngle(1, math.rad(200), Player.Character)
  414. SetSpeed(1, 0.5, Player.Character)
  415. wait(0.3)
  416. SetAngle(1, math.rad(0), Player.Character)
  417. SetSpeed(1, 0.75, Player.Character)
  418. wait(0.05)
  419. if Player.Character[Name].Handle:FindFirstChild("Weld") ~= nil then Player.Character[Name].Handle.Weld:Remove() end
  420. bodyVelocity = Instance.new("BodyVelocity")
  421. bodyVelocity.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  422. bodyVelocity.velocity = (mouse.Hit.p - Player.Character[Name].Handle.Position).unit * 100
  423. bodyVelocity.Parent = Player.Character[Name].Handle
  424. Player.Character[Name].Handle.Open:Stop()
  425. Player.Character[Name].Handle.Drink:Stop()
  426. Player.Character[Name].Handle.Throw.PlayOnRemove = true
  427. Player.Character[Name].Handle.Throw:Remove()
  428. wait(0.25)
  429. bodyVelocity:Remove()
  430. local model = Player.Character[Name]
  431. model.Parent = Workspace
  432. model:MakeJoints()
  433. onDeselected(mouse)
  434. removeParts("holster")
  435. script.Parent:Remove()
  436. end
  437. end
  438.  
  439.  
  440. function onSelected(mouse)
  441. if selected == true then return end
  442. selected = true
  443. mouse.Icon = "rbxasset://textures\\GunWaitCursor.png"
  444. while Player.Character:FindFirstChild("WeaponActivated") ~= nil do
  445. if Player.Character.WeaponActivated.Value == nil then break end
  446. if Player.Character.WeaponActivated.Value.Parent == nil then break end
  447. wait()
  448. end
  449. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  450. removeParts("holster")
  451. makeParts("hand")
  452. weapon = Instance.new("ObjectValue")
  453. weapon.Name = "WeaponActivated"
  454. weapon.Value = script.Parent
  455. weapon.Parent = Player.Character
  456. DisableLimb(1, Player.Character)
  457. SetAngle(1, math.rad(90), Player.Character)
  458. if playAnimation("normal") == false then onDeselected(mouse) end
  459. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  460. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  461. mouse.KeyDown:connect(function(key) onKeyDown(key, mouse) end)
  462. end
  463.  
  464.  
  465. function onDeselected(mouse)
  466. if selected == false then return end
  467. selected = false
  468. while Button1Down == true do
  469. wait()
  470. end
  471. if Player.Character:FindFirstChild("WeaponActivated") ~= nil then
  472. if Player.Character.WeaponActivated.Value == script.Parent then
  473. Player.Character.WeaponActivated:Remove()
  474. end
  475. end
  476. while Player.Character:FindFirstChild("WeaponActivated") ~= nil do
  477. if Player.Character.WeaponActivated.Value == nil then break end
  478. if pcall(function() if Player.Character.WeaponActivated.Value.Parent == nil then return true end end) then break end
  479. wait()
  480. end
  481. removeParts("hand")
  482. makeParts("holster")
  483. SetAngle(1, 0, Player.Character)
  484. ResetLimbCFrame(1, Player.Character)
  485. EnableLimb(1, Player.Character)
  486. end
  487.  
  488.  
  489. if script.Parent.ClassName ~= "HopperBin" then
  490. if Player == nil then print("Error: Player not found!") return end
  491. Tool = Instance.new("HopperBin")
  492. Tool.Name = Name
  493. Tool.Parent = Player.Backpack
  494. script.Name = "Main"
  495. script.Parent = Tool
  496. elseif script.Parent.ClassName == "HopperBin" then
  497. while script.Parent.Parent.ClassName ~= "Backpack" do
  498. wait()
  499. end
  500. if script.Parent:FindFirstChild("Contents") == nil then
  501. contents = Instance.new("NumberValue")
  502. contents.Name = "Contents"
  503. contents.Value = 100
  504. contents.Parent = script.Parent
  505. else
  506. contents = script.Parent.Contents
  507. end
  508. if script.Parent:FindFirstChild("Opened") == nil then
  509. open = Instance.new("BoolValue")
  510. open.Name = "Opened"
  511. open.Value = false
  512. open.Parent = script.Parent
  513. else
  514. open = script.Parent.Opened
  515. end
  516. Player = script.Parent.Parent.Parent
  517. makeParts("holster")
  518. script.Parent.Selected:connect(onSelected)
  519. script.Parent.Deselected:connect(onDeselected)
  520. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement