Advertisement
spacemonkey3591

test

Jun 16th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.33 KB | None | 0 0
  1. --Created with PenguinAnonymous's compiler
  2. --PenguinAnonymous is not responsible for damages caused to your game
  3. --This plugin does not remove things
  4. --PenguinAnonymous cannot be held resonsible for manual deletion for the purpose of testing
  5. --Keep in mind, any items that cause errors in compilation will be skipped and documented within the last line of the disclaimer comments
  6. --Thank you for using my plugin and enjoy :)
  7. --It is free to use
  8. --If you use this plugin to create your own, please give me credit
  9. --Z_V edited my plugin to look like his own and published it without giving me credit, and that makes me very angry
  10. --Errors: TouchTransmitter
  11. local runDummyScript = function(f,scri)
  12. local oldenv = getfenv(f)
  13. local newenv = setmetatable({}, {
  14. __index = function(_, k)
  15. if k:lower() == 'script' then
  16. return scri
  17. else
  18. return oldenv[k]
  19. end
  20. end
  21. })
  22. setfenv(f, newenv)
  23. ypcall(function() f() end)
  24. end
  25. cors = {}
  26. mas = Instance.new("Model",game:GetService("Lighting"))
  27. mas.Name = "CompiledModel"
  28. o1 = Instance.new("Tool")
  29. o2 = Instance.new("Script")
  30. o3 = Instance.new("Script")
  31. o4 = Instance.new("BoolValue")
  32. o5 = Instance.new("BoolValue")
  33. o6 = Instance.new("LocalScript")
  34. o7 = Instance.new("NumberValue")
  35. o8 = Instance.new("NumberValue")
  36. o9 = Instance.new("BoolValue")
  37. o10 = Instance.new("Script")
  38. o11 = Instance.new("Script")
  39. o12 = Instance.new("LocalScript")
  40. o13 = Instance.new("Part")
  41. o14 = Instance.new("Part")
  42. o15 = Instance.new("Sound")
  43. o17 = Instance.new("Part")
  44. o18 = Instance.new("CylinderMesh")
  45. o19 = Instance.new("PointLight")
  46. o20 = Instance.new("ScreenGui")
  47. o21 = Instance.new("Frame")
  48. o22 = Instance.new("TextButton")
  49. o23 = Instance.new("TextButton")
  50. o24 = Instance.new("Frame")
  51. o25 = Instance.new("TextButton")
  52. o26 = Instance.new("BrickColorValue")
  53. o27 = Instance.new("TextButton")
  54. o28 = Instance.new("BrickColorValue")
  55. o29 = Instance.new("TextButton")
  56. o30 = Instance.new("BrickColorValue")
  57. o31 = Instance.new("TextButton")
  58. o32 = Instance.new("BrickColorValue")
  59. o33 = Instance.new("TextButton")
  60. o34 = Instance.new("BrickColorValue")
  61. o35 = Instance.new("TextButton")
  62. o36 = Instance.new("BrickColorValue")
  63. o37 = Instance.new("TextButton")
  64. o38 = Instance.new("BrickColorValue")
  65. o39 = Instance.new("TextButton")
  66. o40 = Instance.new("BrickColorValue")
  67. o41 = Instance.new("TextButton")
  68. o1.Name = "Taser"
  69. o1.Parent = game.Players.LocalPlayer.Backpack
  70. o1.GripForward = Vector3.new(-0, 6.00000021e-05, -1)
  71. o1.GripPos = Vector3.new(0, -0.300000012, 0.400000006)
  72. o1.GripUp = Vector3.new(0, 1, 6.00000021e-05)
  73. o1.CanBeDropped = false
  74. o2.Name = "Mastery"
  75. o2.Parent = o1
  76. table.insert(cors,coroutine.create(function()
  77. wait()
  78. runDummyScript(function()
  79. sp = script.Parent
  80. player = nil
  81. Group = 1155669
  82. Rank = 0
  83. shotcooldown = 1
  84. speed = 300
  85. projectileduration = 2
  86. barreloffset = Vector3.new(-.05,.5,-1.5)
  87. debris = game:GetService("Debris")
  88. ready = true
  89. kill = script.ProjectileScript.Kill
  90. mute = script.ProjectileScript.Mutable
  91. touch = script.Touch
  92.  
  93.  
  94. gui = sp.TaserGui
  95.  
  96. gui.Frame.Kill.MouseButton1Down:connect(function()
  97. if kill.Value == false then
  98. kill.Value = true
  99. gui.Frame.Kill.Text = "Kill: On"
  100. gui.Frame.Kill.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  101. elseif kill.Value == true then
  102. kill.Value = false
  103. gui.Frame.Kill.Text = "Kill: Off"
  104. gui.Frame.Kill.Style = Enum.ButtonStyle.RobloxRoundButton
  105. end
  106. end)
  107. gui.Frame.Mute.MouseButton1Down:connect(function()
  108. if mute.Value == false then
  109. mute.Value = true
  110. gui.Frame.Mute.Text = "Mute: On"
  111. gui.Frame.Mute.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  112. elseif mute.Value == true then
  113. mute.Value = false
  114. gui.Frame.Mute.Text = "Mute: Off"
  115. gui.Frame.Mute.Style = Enum.ButtonStyle.RobloxRoundButton
  116. end
  117. end)
  118.  
  119. gui.Frame.Touch.MouseButton1Down:connect(function()
  120. if touch.Value == false then
  121. touch.Value = true
  122. gui.Frame.Touch.Text = "Touch Taze: On"
  123. gui.Frame.Touch.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  124. elseif touch.Value == true then
  125. touch.Value = false
  126. gui.Frame.Touch.Text = "Touch Taze: Off"
  127. gui.Frame.Touch.Style = Enum.ButtonStyle.RobloxRoundButton
  128. end
  129. end)
  130.  
  131. sp.Outer.Touched:connect(function(part)
  132. if touch.Value == true then
  133. if part.Parent:FindFirstChild("Humanoid") and part.Parent.Name ~= sp.Parent.Name then
  134. local char = part.Parent
  135. char.Humanoid.PlatformStand = true
  136. for _,one in pairs(char:GetChildren()) do
  137. if one:IsA("Tool") then
  138. one.Parent = game.Players:GetPlayerFromCharacter(char).Backpack
  139. end
  140. end
  141. end
  142. end
  143. end)
  144.  
  145. for _,colorbutton in pairs(gui.Frame.Colors:GetChildren()) do
  146. if colorbutton:IsA("TextButton") then
  147. colorbutton.MouseButton1Down:connect(function()
  148. sp.Outer.BrickColor = colorbutton.BrickColor.Value
  149. end)
  150. end
  151. end
  152.  
  153. sp.Equipped:connect(function(mouse)
  154. local player = game.Players:GetPlayerFromCharacter(sp.Parent)
  155. local marketplace = game:GetService("MarketplaceService")
  156. if player.PlayerGui:FindFirstChild(gui.Name) == nil then
  157. gui.Parent = player.PlayerGui
  158. end
  159. if player.Character ~= nil and player:FindFirstChild("AdSeen") == nil then
  160. if player.MembershipType == Enum.MembershipType.None and marketplace:PlayerOwnsAsset(player,228411931) == false then
  161. marketplace:PromptPurchase(player,228411931)
  162. local value = Instance.new("StringValue",player)
  163. value.Name = "AdSeen"
  164. value.Value = "Thank you!"
  165. end
  166. if player.MembershipType == Enum.MembershipType.BuildersClub and marketplace:PlayerOwnsAsset(player,229943019) == false then
  167. marketplace:PromptPurchase(player,229943019)
  168. local value = Instance.new("StringValue",player)
  169. value.Name = "AdSeen"
  170. value.Value = "Thank you!"
  171. end
  172. if player.MembershipType == Enum.MembershipType.TurboBuildersClub and marketplace:PlayerOwnsAsset(player,229943046) == false then
  173. marketplace:PromptPurchase(player,229943046)
  174. local value = Instance.new("StringValue",player)
  175. value.Name = "AdSeen"
  176. value.Value = "Thank you!"
  177. end
  178. if player.MembershipType == Enum.MembershipType.OutrageousBuildersClub and marketplace:PlayerOwnsAsset(player,229943066) == false then
  179. marketplace:PromptPurchase(player,229943066)
  180. local value = Instance.new("StringValue",player)
  181. value.Name = "AdSeen"
  182. value.Value = "Thank you!"
  183. end
  184. end
  185. end)
  186.  
  187. sp.Unequipped:connect(function()
  188. gui.Parent = sp
  189. local player = nil
  190. end)
  191.  
  192. FireBall = Instance.new('Part')
  193. FireBall.Name = "FireBall"
  194. FireBall.BrickColor = BrickColor.new ("Cyan")
  195. FireBall.Transparency = 0.4
  196. FireBall.Reflectance = 0.5
  197. FireBall.CanCollide = false
  198. FireBall.TopSurface = Enum.SurfaceType.Smooth
  199. FireBall.BottomSurface = Enum.SurfaceType.Smooth
  200. FireBall.FormFactor = "Custom"
  201. FireBall.Size = Vector3.new(0.2,0.2,0.2)
  202. Instance.new("BodyForce", FireBall).force = Vector3.new(0, FireBall:GetMass() * 196.2, 0) -- Antigravity
  203. m = Instance.new("SpecialMesh")
  204. m.MeshType = "Sphere"
  205. m.Scale = Vector3.new(0.75,0.75,0.75)
  206. m.Parent = FireBall
  207.  
  208. local function LaunchFireBall(v)
  209. sp.Head.PointLight.Enabled = true
  210. local projectile = FireBall:Clone()
  211. local projectilescript = script.ProjectileScript:clone()
  212. projectilescript.Parent = projectile
  213. projectilescript.Rank.Value = Rank
  214. projectilescript.Group.Value = Group
  215. projectilescript.Disabled = false
  216. local c = Instance.new("StringValue")
  217. c.Name = "creator"
  218. c.Value = sp.Parent.Name
  219. c.Parent = projectile
  220. sp.Handle.Fire:Play()
  221. debris:AddItem(projectile, projectileduration)
  222. projectile.Parent = workspace
  223. projectile.CFrame = sp.Gun.CFrame
  224. projectile.Velocity = v * speed
  225. wait(0.1)
  226. sp.Head.PointLight.Enabled = false
  227. end
  228.  
  229. sp.Activated:connect(function()
  230. if ready == true then
  231. ready = false
  232. local char = sp.Parent
  233. local targetPos = char.Humanoid.TargetPoint
  234. local lookAt = (targetPos - char.Head.Position).unit
  235. LaunchFireBall(lookAt)
  236. wait(shotcooldown)
  237. ready = true
  238. end
  239. end)
  240.  
  241.  
  242.  
  243.  
  244. end,o2)
  245. end))
  246. o3.Name = "ProjectileScript"
  247. o3.Parent = o2
  248. o3.Disabled = true
  249. table.insert(cors,coroutine.create(function()
  250. wait()
  251. runDummyScript(function()
  252. local mute = script:WaitForChild("Mutable")
  253. local kill = script:WaitForChild("Kill")
  254. local groupid = script:WaitForChild("Group")
  255. local rank = script:WaitForChild("Rank")
  256. script.Parent.Touched:connect(function(part)
  257. if part.Parent:FindFirstChild("Humanoid") and part.Parent.Name ~= script.Parent.creator.Value then
  258. local char = part.Parent
  259. char.Humanoid.PlatformStand = true
  260. for _,one in pairs(char:GetChildren()) do
  261. if one:IsA("Tool") then
  262. one.Parent = game.Players:GetPlayerFromCharacter(char).Backpack
  263. end
  264. end
  265. if kill.Value == true then
  266. char.Humanoid:TakeDamage(100)
  267. end
  268. if mute.Value == true then
  269. local mutescript = script.Mute
  270. mutescript.Parent = game.Players:GetPlayerFromCharacter(char).PlayerGui
  271. mutescript.Disabled = false
  272. end
  273. script.Parent:Destroy()
  274. end
  275. end)
  276.  
  277. end,o3)
  278. end))
  279. o4.Name = "Mutable"
  280. o4.Parent = o3
  281. o5.Name = "Kill"
  282. o5.Parent = o3
  283. o6.Name = "Mute"
  284. o6.Parent = o3
  285. o6.Disabled = true
  286. table.insert(cors,coroutine.create(function()
  287. wait()
  288. runDummyScript(function()
  289. game.StarterGui:SetCoreGuiEnabled(3, false)
  290. end,o6)
  291. end))
  292. o7.Name = "Rank"
  293. o7.Parent = o3
  294. o8.Name = "Group"
  295. o8.Parent = o3
  296. o9.Name = "Touch"
  297. o9.Parent = o2
  298. o10.Name = "WeldArm"
  299. o10.Parent = o1
  300. table.insert(cors,coroutine.create(function()
  301. wait()
  302. runDummyScript(function()
  303. Tool = script.Parent;
  304. local arms = nil
  305. local torso = nil
  306. local welds = {}
  307.  
  308. function Equip(mouse)
  309. wait(0.01)
  310. arms = {Tool.Parent:FindFirstChild("Left Arm"), Tool.Parent:FindFirstChild("Right Arm")}
  311. torso = Tool.Parent:FindFirstChild("Torso")
  312. if arms ~= nil and torso ~= nil then
  313. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  314. if sh ~= nil then
  315. local yes = true
  316. if yes then
  317. yes = false
  318. sh[1].Part1 = nil
  319. sh[2].Part1 = nil
  320. local weld1 = Instance.new("Weld")
  321. weld1.Part0 = torso
  322. weld1.Parent = torso
  323. weld1.Part1 = arms[1]
  324. weld1.C1 = CFrame.new(-0.25, -0.2, 0.5) * CFrame.fromEulerAnglesXYZ(math.rad(350), 0, math.rad(-90))
  325. welds[1] = weld1
  326. weld1.Name = "weld1"
  327. local weld2 = Instance.new("Weld")
  328. weld2.Part0 = torso
  329. weld2.Parent = torso
  330. weld2.Part1 = arms[2]
  331. weld2.C1 = CFrame.new(-1, 0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0)
  332. welds[2] = weld2
  333. weld2.Name = "weld2"
  334. end
  335. else
  336. print("sh")
  337. end
  338. else
  339. print("arms")
  340. end
  341. end
  342.  
  343. function Unequip(mouse)
  344. if arms ~= nil and torso ~= nil then
  345. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  346. if sh ~= nil then
  347. local yes = true
  348. if yes then
  349. yes = false
  350. sh[1].Part1 = arms[1]
  351. sh[2].Part1 = arms[2]
  352. welds[1].Parent = nil
  353. welds[2].Parent = nil
  354. end
  355. else
  356. print("sh")
  357. end
  358. else
  359. print("arms")
  360. end
  361. end
  362. Tool.Equipped:connect(Equip)
  363. Tool.Unequipped:connect(Unequip)
  364.  
  365. end,o10)
  366. end))
  367. o11.Name = "Welding"
  368. o11.Parent = o1
  369. table.insert(cors,coroutine.create(function()
  370. wait()
  371. runDummyScript(function()
  372. function Weld(x,y)
  373. local W = Instance.new("Weld")
  374. W.Part0 = x
  375. W.Part1 = y
  376. local CJ = CFrame.new(x.Position)
  377. local C0 = x.CFrame:inverse()*CJ
  378. local C1 = y.CFrame:inverse()*CJ
  379. W.C0 = C0
  380. W.C1 = C1
  381. W.Parent = x
  382. end
  383.  
  384. function Get(A)
  385. if A.className == "Part" or A.className == "UnionOperation" then
  386. Weld(script.Parent.Handle, A)
  387. else
  388. local C = A:GetChildren()
  389. for i=1, #C do
  390. Get(C[i])
  391. end
  392. end
  393. end
  394.  
  395. function Finale()
  396. Get(script.Parent)
  397. end
  398.  
  399. script.Parent.Equipped:connect(Finale)
  400. script.Parent.Unequipped:connect(Finale)
  401. Finale()
  402. end,o11)
  403. end))
  404. o12.Name = "BackupWeld"
  405. o12.Parent = o1
  406. table.insert(cors,coroutine.create(function()
  407. wait()
  408. runDummyScript(function()
  409. function Weld(x,y)
  410. local W = Instance.new("Weld")
  411. W.Part0 = x
  412. W.Part1 = y
  413. local CJ = CFrame.new(x.Position)
  414. local C0 = x.CFrame:inverse()*CJ
  415. local C1 = y.CFrame:inverse()*CJ
  416. W.C0 = C0
  417. W.C1 = C1
  418. W.Parent = x
  419. end
  420.  
  421. function Get(A)
  422. if A.className == "Part" or A.className == "UnionOperation" then
  423. Weld(script.Parent.Handle, A)
  424. A.Anchored = false
  425. else
  426. local C = A:GetChildren()
  427. for i=1, #C do
  428. Get(C[i])
  429. end
  430. end
  431. end
  432.  
  433. function Finale()
  434. Get(script.Parent)
  435. end
  436.  
  437. script.Parent.Equipped:connect(Finale)
  438. script.Parent.Unequipped:connect(Finale)
  439. Finale()
  440. end,o12)
  441. end))
  442. o13.Name = "Gun"
  443. o13.Parent = o1
  444. o13.Material = Enum.Material.SmoothPlastic
  445. o13.Transparency = 1
  446. o13.Position = Vector3.new(-134.524979, 0.492063999, 205.899994)
  447. o13.Rotation = Vector3.new(0, -90, 0)
  448. o13.FormFactor = Enum.FormFactor.Custom
  449. o13.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  450. o13.CFrame = CFrame.new(-134.524979, 0.492063999, 205.899994, 0, -4.37113883e-08, -1, -4.37113883e-08, 1, -4.37113883e-08, 1, 4.37113883e-08, -1.91068547e-15)
  451. o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  452. o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  453. o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  454. o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  455. o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  456. o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  457. o13.Position = Vector3.new(-134.524979, 0.492063999, 205.899994)
  458. o14.Name = "Handle"
  459. o14.Parent = o1
  460. o14.BrickColor = BrickColor.new("White")
  461. o14.Transparency = 1
  462. o14.Position = Vector3.new(-134.843002, 0.100060999, 205.906998)
  463. o14.Rotation = Vector3.new(0.0599999987, -75.1200027, 0.0799999982)
  464. o14.FormFactor = Enum.FormFactor.Custom
  465. o14.Size = Vector3.new(0.200000003, 0.200000048, 0.200000003)
  466. o14.CFrame = CFrame.new(-134.843002, 0.100060999, 205.906998, 0.256716073, -0.000337566889, -0.966486812, 0.000230576508, 0.99999994, -0.000288026844, 0.966486812, -0.000148908031, 0.256716132)
  467. o14.BottomSurface = Enum.SurfaceType.Smooth
  468. o14.TopSurface = Enum.SurfaceType.Smooth
  469. o14.Color = Color3.new(0.94902, 0.952941, 0.952941)
  470. o14.Position = Vector3.new(-134.843002, 0.100060999, 205.906998)
  471. o15.Name = "Fire"
  472. o15.Parent = o14
  473. o15.Pitch = 0.60000002384186
  474. o15.SoundId = "http://www.roblox.com/asset/?id=2767090"
  475. o15.Volume = 1
  476. o17.Name = "Head"
  477. o17.Parent = o1
  478. o17.Material = Enum.Material.SmoothPlastic
  479. o17.Position = Vector3.new(-134.524979, 0.467061996, 205.899994)
  480. o17.Rotation = Vector3.new(-180, 0, -90)
  481. o17.FormFactor = Enum.FormFactor.Custom
  482. o17.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  483. o17.CFrame = CFrame.new(-134.524979, 0.467061996, 205.899994, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  484. o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  485. o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  486. o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  487. o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  488. o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  489. o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  490. o17.Position = Vector3.new(-134.524979, 0.467061996, 205.899994)
  491. o18.Parent = o17
  492. o18.Scale = Vector3.new(1, 0.125, 0.75)
  493. o19.Parent = o17
  494. o19.Color = Color3.new(0.333333, 0.666667, 1)
  495. o19.Enabled = false
  496. o19.Brightness = 5
  497. o19.Range = 5
  498. o19.Shadows = true
  499. o20.Name = "TaserGui"
  500. o20.Parent = o1
  501. o21.Parent = o20
  502. o21.Position = UDim2.new(0.39999997615814,0,-3.7252902984619e-08,0)
  503. o21.Size = UDim2.new(0.25,0,0.15000000596046,0)
  504. o21.Position = UDim2.new(0.39999997615814,0,-3.7252902984619e-08,0)
  505. o21.BackgroundColor3 = Color3.new(1, 1, 1)
  506. o21.BackgroundTransparency = 1
  507. o21.ClipsDescendants = true
  508. o22.Name = "Mute"
  509. o22.Parent = o21
  510. o22.Size = UDim2.new(0.50000005960464,0,0.34999996423721,0)
  511. o22.Style = Enum.ButtonStyle.RobloxRoundButton
  512. o22.Text = "Mute: Off"
  513. o22.BackgroundColor3 = Color3.new(1, 1, 1)
  514. o22.Font = Enum.Font.ArialBold
  515. o22.FontSize = Enum.FontSize.Size14
  516. o22.TextColor3 = Color3.new(1, 1, 1)
  517. o22.TextScaled = true
  518. o22.TextStrokeTransparency = 0.30000001192093
  519. o22.TextWrapped = true
  520. o23.Name = "Kill"
  521. o23.Parent = o21
  522. o23.Position = UDim2.new(0.50000005960464,0,0,0)
  523. o23.Size = UDim2.new(0.50000005960464,0,0.34999996423721,0)
  524. o23.Style = Enum.ButtonStyle.RobloxRoundButton
  525. o23.Text = "Kill: Off"
  526. o23.Position = UDim2.new(0.50000005960464,0,0,0)
  527. o23.BackgroundColor3 = Color3.new(1, 1, 1)
  528. o23.Font = Enum.Font.ArialBold
  529. o23.FontSize = Enum.FontSize.Size14
  530. o23.TextColor3 = Color3.new(1, 1, 1)
  531. o23.TextScaled = true
  532. o23.TextStrokeTransparency = 0.30000001192093
  533. o23.TextWrapped = true
  534. o24.Name = "Colors"
  535. o24.Parent = o21
  536. o24.Position = UDim2.new(7.4505805969238e-09,0,0.75000011920929,0)
  537. o24.Size = UDim2.new(1,0,0.24999983608723,0)
  538. o24.Position = UDim2.new(7.4505805969238e-09,0,0.75000011920929,0)
  539. o24.BackgroundColor3 = Color3.new(1, 1, 1)
  540. o24.BackgroundTransparency = 1
  541. o24.BorderColor3 = Color3.new(1, 1, 1)
  542. o24.BorderSizePixel = 0
  543. o24.ZIndex = 2
  544. o24.ClipsDescendants = true
  545. o25.Name = "Color"
  546. o25.Parent = o24
  547. o25.Position = UDim2.new(0.012500000186265,0,7.4505805969238e-09,0)
  548. o25.Size = UDim2.new(0.1000000089407,0,1.0000001192093,0)
  549. o25.Text = ""
  550. o25.Position = UDim2.new(0.012500000186265,0,7.4505805969238e-09,0)
  551. o25.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  552. o25.BorderColor3 = Color3.new(1, 1, 1)
  553. o25.BorderSizePixel = 0
  554. o25.ZIndex = 3
  555. o25.Font = Enum.Font.Arial
  556. o25.FontSize = Enum.FontSize.Size14
  557. o25.TextColor3 = Color3.new(1, 1, 1)
  558. o25.TextScaled = true
  559. o25.TextStrokeTransparency = 0.30000001192093
  560. o25.TextWrapped = true
  561. o26.Name = "BrickColor"
  562. o26.Parent = o25
  563. o26.Value = BrickColor.new("Dusty Rose")
  564. o27.Name = "Color"
  565. o27.Parent = o24
  566. o27.Position = UDim2.new(0.13749997317791,0,7.4505805969238e-09,0)
  567. o27.Size = UDim2.new(0.1000000089407,0,1.0000001192093,0)
  568. o27.Text = ""
  569. o27.Position = UDim2.new(0.13749997317791,0,7.4505805969238e-09,0)
  570. o27.BackgroundColor3 = Color3.new(1, 1, 0.498039)
  571. o27.BorderColor3 = Color3.new(1, 1, 1)
  572. o27.BorderSizePixel = 0
  573. o27.ZIndex = 3
  574. o27.Font = Enum.Font.Arial
  575. o27.FontSize = Enum.FontSize.Size14
  576. o27.TextColor3 = Color3.new(1, 1, 1)
  577. o27.TextScaled = true
  578. o27.TextStrokeTransparency = 0.30000001192093
  579. o27.TextWrapped = true
  580. o28.Name = "BrickColor"
  581. o28.Parent = o27
  582. o28.Value = BrickColor.new("Cool yellow")
  583. o29.Name = "Color"
  584. o29.Parent = o24
  585. o29.Position = UDim2.new(0.26249995827675,0,7.4505805969238e-09,0)
  586. o29.Size = UDim2.new(0.1000000089407,0,1.0000001192093,0)
  587. o29.Text = ""
  588. o29.Position = UDim2.new(0.26249995827675,0,7.4505805969238e-09,0)
  589. o29.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  590. o29.BorderColor3 = Color3.new(1, 1, 1)
  591. o29.BorderSizePixel = 0
  592. o29.ZIndex = 3
  593. o29.Font = Enum.Font.Arial
  594. o29.FontSize = Enum.FontSize.Size14
  595. o29.TextColor3 = Color3.new(1, 1, 1)
  596. o29.TextScaled = true
  597. o29.TextStrokeTransparency = 0.30000001192093
  598. o29.TextWrapped = true
  599. o30.Name = "BrickColor"
  600. o30.Parent = o29
  601. o30.Value = BrickColor.new("Cyan")
  602. o31.Name = "Color"
  603. o31.Parent = o24
  604. o31.Position = UDim2.new(0.38749998807907,0,7.4505805969238e-09,0)
  605. o31.Size = UDim2.new(0.1000000089407,0,1.0000001192093,0)
  606. o31.Text = ""
  607. o31.Position = UDim2.new(0.38749998807907,0,7.4505805969238e-09,0)
  608. o31.BackgroundColor3 = Color3.new(1, 1, 1)
  609. o31.BorderColor3 = Color3.new(1, 1, 1)
  610. o31.BorderSizePixel = 0
  611. o31.ZIndex = 3
  612. o31.Font = Enum.Font.Arial
  613. o31.FontSize = Enum.FontSize.Size14
  614. o31.TextColor3 = Color3.new(1, 1, 1)
  615. o31.TextScaled = true
  616. o31.TextStrokeTransparency = 0.30000001192093
  617. o31.TextWrapped = true
  618. o32.Name = "BrickColor"
  619. o32.Parent = o31
  620. o32.Value = BrickColor.new("White")
  621. o33.Name = "Color"
  622. o33.Parent = o24
  623. o33.Position = UDim2.new(0.51249998807907,0,7.4505805969238e-09,0)
  624. o33.Size = UDim2.new(0.1000000089407,0,1.0000001192093,0)
  625. o33.Text = ""
  626. o33.Position = UDim2.new(0.51249998807907,0,7.4505805969238e-09,0)
  627. o33.BackgroundColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  628. o33.BorderColor3 = Color3.new(1, 1, 1)
  629. o33.BorderSizePixel = 0
  630. o33.ZIndex = 3
  631. o33.Font = Enum.Font.Arial
  632. o33.FontSize = Enum.FontSize.Size14
  633. o33.TextColor3 = Color3.new(1, 1, 1)
  634. o33.TextScaled = true
  635. o33.TextStrokeTransparency = 0.30000001192093
  636. o33.TextWrapped = true
  637. o34.Name = "BrickColor"
  638. o34.Parent = o33
  639. o35.Name = "Color"
  640. o35.Parent = o24
  641. o35.Position = UDim2.new(0.63749986886978,0,7.4505805969238e-09,0)
  642. o35.Size = UDim2.new(0.1000000089407,0,1.0000001192093,0)
  643. o35.Text = ""
  644. o35.Position = UDim2.new(0.63749986886978,0,7.4505805969238e-09,0)
  645. o35.BackgroundColor3 = Color3.new(0, 0, 0)
  646. o35.BorderColor3 = Color3.new(1, 1, 1)
  647. o35.BorderSizePixel = 0
  648. o35.ZIndex = 3
  649. o35.Font = Enum.Font.Arial
  650. o35.FontSize = Enum.FontSize.Size14
  651. o35.TextColor3 = Color3.new(1, 1, 1)
  652. o35.TextScaled = true
  653. o35.TextStrokeTransparency = 0.30000001192093
  654. o35.TextWrapped = true
  655. o36.Name = "BrickColor"
  656. o36.Parent = o35
  657. o36.Value = BrickColor.new("Black")
  658. o37.Name = "Color"
  659. o37.Parent = o24
  660. o37.Position = UDim2.new(0.76249974966049,0,7.4505805969238e-09,0)
  661. o37.Size = UDim2.new(0.1000000089407,0,1.0000001192093,0)
  662. o37.Text = ""
  663. o37.Position = UDim2.new(0.76249974966049,0,7.4505805969238e-09,0)
  664. o37.BackgroundColor3 = Color3.new(0.333333, 1, 0.498039)
  665. o37.BorderColor3 = Color3.new(1, 1, 1)
  666. o37.BorderSizePixel = 0
  667. o37.ZIndex = 3
  668. o37.Font = Enum.Font.Arial
  669. o37.FontSize = Enum.FontSize.Size14
  670. o37.TextColor3 = Color3.new(1, 1, 1)
  671. o37.TextScaled = true
  672. o37.TextStrokeTransparency = 0.30000001192093
  673. o37.TextWrapped = true
  674. o38.Name = "BrickColor"
  675. o38.Parent = o37
  676. o38.Value = BrickColor.new("Medium green")
  677. o39.Name = "Color"
  678. o39.Parent = o24
  679. o39.Position = UDim2.new(0.8874996304512,0,7.4505805969238e-09,0)
  680. o39.Size = UDim2.new(0.1000000089407,0,1.0000001192093,0)
  681. o39.Text = ""
  682. o39.Position = UDim2.new(0.8874996304512,0,7.4505805969238e-09,0)
  683. o39.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  684. o39.BorderColor3 = Color3.new(1, 1, 1)
  685. o39.BorderSizePixel = 0
  686. o39.ZIndex = 3
  687. o39.Font = Enum.Font.Arial
  688. o39.FontSize = Enum.FontSize.Size14
  689. o39.TextColor3 = Color3.new(1, 1, 1)
  690. o39.TextScaled = true
  691. o39.TextStrokeTransparency = 0.30000001192093
  692. o39.TextWrapped = true
  693. o40.Name = "BrickColor"
  694. o40.Parent = o39
  695. o40.Value = BrickColor.new("Deep orange")
  696. o41.Name = "Touch"
  697. o41.Parent = o21
  698. o41.Position = UDim2.new(0,0,0.35000002384186,0)
  699. o41.Size = UDim2.new(1.0000001192093,0,0.34999996423721,0)
  700. o41.Style = Enum.ButtonStyle.RobloxRoundButton
  701. o41.Text = "Touch Taze: Off"
  702. o41.Position = UDim2.new(0,0,0.35000002384186,0)
  703. o41.BackgroundColor3 = Color3.new(1, 1, 1)
  704. o41.Font = Enum.Font.ArialBold
  705. o41.FontSize = Enum.FontSize.Size14
  706. o41.TextColor3 = Color3.new(1, 1, 1)
  707. o41.TextScaled = true
  708. o41.TextStrokeTransparency = 0.30000001192093
  709. o41.TextWrapped = true
  710. mas.Parent = workspace
  711. mas:MakeJoints()
  712. local mas1 = mas:GetChildren()
  713. for i=1,#mas1 do
  714. mas1[i].Parent = script
  715. ypcall(function() mas1[i]:MakeJoints() end)
  716. end
  717. mas:Destroy()
  718. for i=1,#cors do
  719. coroutine.resume(cors[i])
  720. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement