Zickzacklinks

New prison life hack (Script Gui)

Nov 4th, 2018
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.29 KB | None | 0 0
  1. -- Edited by Acid Dog#6601
  2. -- Local player
  3. local p = game.Players.LocalPlayer
  4.  
  5. -- Instance Objects
  6. local gui = Instance.new('ScreenGui',p.PlayerGui)
  7. local frame = Instance.new('ScrollingFrame',gui)
  8. local open = Instance.new('TextButton',gui)
  9. local name = Instance.new('TextLabel',frame)
  10. local btools = Instance.new('TextButton',frame)
  11. local escape = Instance.new('TextButton',frame)
  12. local exit = Instance.new('TextButton',frame)
  13. local killaura = Instance.new('TextButton',frame)
  14. local melee = Instance.new('TextButton',frame)
  15. local removedoors = Instance.new('TextButton',frame)
  16. local tools = Instance.new('TextButton',frame)
  17. local speedplus = Instance.new('TextButton',frame)
  18. local speedminus = Instance.new('TextButton',frame)
  19. local jumpplus = Instance.new('TextButton',frame)
  20. local jumpminus = Instance.new('TextButton',frame)
  21. local bypass = Instance.new('TextButton',frame)
  22. local db = Instance.new('TextButton',frame)
  23. local floor = Instance.new('TextButton',frame)
  24. local creator2 = Instance.new('TextButton',frame)
  25. local prison = Instance.new('TextButton',frame)
  26. local neutral = Instance.new('TextButton',frame)
  27. local God = Instance.new('TextButton',frame)
  28. local InsaneAndDab = Instance.new('TextButton',frame)
  29.  
  30. -- Name object
  31. gui.Name = "Prison Life GUI V2"
  32. frame.Name = "Commands"
  33. open.Name = "Open"
  34. name.Name = "Name"
  35. btools.Name = "BtoolsButton"
  36. escape.Name = "EscapeButton"
  37. exit.Name = "ExitButton"
  38. killaura.Name = "KillauraButton"
  39. melee.Name = "MeleeButton"
  40. removedoors.Name = "RemoveDoorsButton"
  41. tools.Name = "ToolsButton"
  42. speedplus.Name = "SpeedAdd"
  43. speedminus.Name = "SpeedReduce"
  44. jumpplus.Name = "JumpAdd"
  45. jumpminus.Name = "JumpReduce"
  46. bypass.Name = "Bypass"
  47. db.Name = "DisableBypass"
  48. floor.Name = "Floor"
  49. creator2.Name = "Creator2Name"
  50. prison.Name = "TPtoprison"
  51. neutral.Name = "neutralTeam"
  52. God.Name = "FEGod"
  53. InsaneAndDab.Name = "FEGod"
  54.  
  55. -- Object Visible
  56. frame.Visible = true
  57. open.Visible = false
  58. name.Visible = true
  59. btools.Visible = true
  60. escape.Visible = true
  61. exit.Visible = true
  62. killaura.Visible = true
  63. melee.Visible = true
  64. removedoors.Visible = true
  65. tools.Visible = true
  66. speedplus.Visible = true
  67. speedminus.Visible = true
  68. jumpplus.Visible = true
  69. jumpminus.Visible = true
  70. bypass.Visible = true
  71. db.Visible = true
  72. floor.Visible = true
  73. creator2.Visible = true
  74. prison.Visible = true
  75. neutral.Visible = true
  76. God.Visible = true
  77. InsaneAndDab.Visible = true
  78.  
  79. -- Background Color
  80. frame.BackgroundColor3 = Color3.new(255,255,255)
  81. open.BackgroundColor3 = Color3.new(255,255,255)
  82. name.BackgroundColor3 = Color3.new(255,255,255)
  83. btools.BackgroundColor3 = Color3.new(196,40,28)
  84. escape.BackgroundColor3 = Color3.new(196,40,28)
  85. exit.BackgroundColor3 = Color3.new(196,40,28)
  86. killaura.BackgroundColor3 = Color3.new(196,40,28)
  87. melee.BackgroundColor3 = Color3.new(196,40,28)
  88. removedoors.BackgroundColor3 = Color3.new(196,40,28)
  89. tools.BackgroundColor3 = Color3.new(196,40,28)
  90. speedplus.BackgroundColor3 = Color3.new(196,40,28)
  91. speedminus.BackgroundColor3 = Color3.new(196,40,28)
  92. jumpplus.BackgroundColor3 = Color3.new(196,40,28)
  93. jumpminus.BackgroundColor3 = Color3.new(196,40,28)
  94. bypass.BackgroundColor3 = Color3.new(196,40,28)
  95. db.BackgroundColor3 = Color3.new(196,40,28)
  96. floor.BackgroundColor3 = Color3.new(196,40,28)
  97. creator2.BackgroundColor3 = Color3.new(196,40,28)
  98. prison.BackgroundColor3 = Color3.new(196,40,28)
  99. neutral.BackgroundColor3 = Color3.new(196,40,28)
  100. God.BackgroundColor3 = Color3.new(196,40,28)
  101. InsaneAndDab.BackgroundColor3 = Color3.new(196,40,28)
  102.  
  103. -- Background Transparency
  104. frame.BackgroundTransparency = 0.2
  105. open.BackgroundTransparency = 0.2
  106. name.BackgroundTransparency = 0.6
  107. btools.BackgroundTransparency = 0
  108. escape.BackgroundTransparency = 0
  109. exit.BackgroundTransparency = 0
  110. killaura.BackgroundTransparency = 0
  111. melee.BackgroundTransparency = 0
  112. removedoors.BackgroundTransparency = 0
  113. tools.BackgroundTransparency = 0
  114. speedplus.BackgroundTransparency = 0
  115. speedminus.BackgroundTransparency = 0
  116. jumpplus.BackgroundTransparency = 0
  117. jumpminus.BackgroundTransparency = 0
  118. bypass.BackgroundTransparency = 0
  119. db.BackgroundTransparency = 0
  120. floor.BackgroundTransparency = 0
  121. creator2.BackgroundTransparency = 0
  122. prison.BackgroundTransparency = 0
  123. neutral.BackgroundTransparency = 0
  124. God.BackgroundTransparency = 0
  125. InsaneAndDab.BackgroundTransparency = 0
  126.  
  127. -- Objects Size
  128. frame.Size = UDim2.new(0,250,0,350)
  129. open.Size = UDim2.new(0,60,0,25)
  130. name.Size = UDim2.new(0,180,0,40)
  131. btools.Size = UDim2.new(0.9,12,0,30)
  132. escape.Size = UDim2.new(0.9,12,0,30)
  133. exit.Size = UDim2.new(0,50,0,40)
  134. killaura.Size = UDim2.new(0.9,12,0,30)
  135. melee.Size = UDim2.new(0.9,12,0,30)
  136. removedoors.Size = UDim2.new(0.9,12,0,30)
  137. tools.Size = UDim2.new(0.9,12,0,30)
  138. speedplus.Size = UDim2.new(0.9,12,0,30)
  139. speedminus.Size = UDim2.new(0.9,12,0,30)
  140. jumpplus.Size = UDim2.new(0.9,12,0,30)
  141. jumpminus.Size = UDim2.new(0.9,12,0,30)
  142. bypass.Size = UDim2.new(0.9,12,0,30)
  143. db.Size = UDim2.new(0.9,12,0,30)
  144. floor.Size = UDim2.new(0.9,12,0,30)
  145. creator2.Size = UDim2.new(0.9,12,0,30)
  146. prison.Size = UDim2.new(0.9,12,0,30)
  147. neutral.Size = UDim2.new(0.9,12,0,30)
  148. God.Size = UDim2.new(0.9,12,0,30)
  149. InsaneAndDab.Size = UDim2.new(0.9,12,0,30)
  150.  
  151. -- Objects Position
  152. frame.Position = UDim2.new(0,5,0.4,0)
  153. open.Position = UDim2.new(0,0,0,0)
  154. name.Position = UDim2.new(0,0,0,5)
  155. btools.Position = UDim2.new(0,0,0,185)
  156. escape.Position = UDim2.new(0,0,0,230)
  157. exit.Position = UDim2.new(0,184,0,5)
  158. killaura.Position = UDim2.new(0,0,0,275)
  159. melee.Position = UDim2.new(0,0,0,140)
  160. removedoors.Position = UDim2.new(0,0,0,50)
  161. tools.Position = UDim2.new(0,0,0,95)
  162. speedplus.Position = UDim2.new(0,0,0,320)
  163. speedminus.Position = UDim2.new(0,0,0,365)
  164. jumpplus.Position = UDim2.new(0,0,0,410)
  165. jumpminus.Position = UDim2.new(0,0,0,455)
  166. bypass.Position = UDim2.new(0,0,0,500)
  167. db.Position = UDim2.new(0,0,0,545)
  168. floor.Position = UDim2.new(0,0,0,590)
  169. prison.Position = UDim2.new(0,0,0,635)
  170. neutral.Position = UDim2.new(0,0,0,680)
  171. God.Position = UDim2.new(0,0,0,725)
  172. InsaneAndDab.Position = UDim2.new(0,0,0,770)
  173. creator2.Position = UDim2.new(0,0,0,815)
  174.  
  175. -- Objects Text Color
  176. open.TextColor3 = Color3.new(0,255,0)
  177. name.TextColor3 = Color3.new(0,0,255)
  178. btools.TextColor3 = Color3.new(255,0,0)
  179. escape.TextColor3 = Color3.new(255,0,0)
  180. exit.TextColor3 = Color3.new(0,255,0)
  181. killaura.TextColor3 = Color3.new(255,0,0)
  182. melee.TextColor3 = Color3.new(255,0,0)
  183. removedoors.TextColor3 = Color3.new(255,0,0)
  184. tools.TextColor3 = Color3.new(255,0,0)
  185. speedplus.TextColor3 = Color3.new(255,0,0)
  186. speedminus.TextColor3 = Color3.new(255,0,0)
  187. jumpplus.TextColor3 = Color3.new(255,0,0)
  188. jumpminus.TextColor3 = Color3.new(255,0,0)
  189. bypass.TextColor3 = Color3.new(255,0,0)
  190. db.TextColor3 = Color3.new(255,0,0)
  191. floor.TextColor3 = Color3.new(255,0,0)
  192. creator2.TextColor3 = Color3.new(0,0,255)
  193. prison.TextColor3 = Color3.new(255,0,0)
  194. neutral.TextColor3 = Color3.new(255,0,0)
  195. God.TextColor3 = Color3.new(255,0,0)
  196. InsaneAndDab.TextColor3 = Color3.new(255,0,0)
  197.  
  198.  
  199. -- Object Font
  200. name.Font = 'Fantasy'
  201.  
  202. -- Object Text
  203. open.Text = 'Open'
  204. name.Text = 'Prison Life GUI Remastered V2'
  205. btools.Text = 'Btools'
  206. escape.Text = 'Escape The Prison'
  207. exit.Text = 'Exit'
  208. killaura.Text = 'Kill Aura'
  209. melee.Text = 'Removed items!'
  210. removedoors.Text = 'Remove Doors'
  211. tools.Text = 'Give Guns'
  212. speedplus.Text = 'WalkSpeed + 10'
  213. speedminus.Text = 'WalkSpeed - 10'
  214. jumpplus.Text = 'JumpPower + 10'
  215. jumpminus.Text = 'JumpPower - 10'
  216. bypass.Text = 'Bypass Taser, Arrest [Cannot Punch]'
  217. db.Text = 'Disable Bypass Taser, Arrest'
  218. floor.Text = 'Tools'
  219. creator2.Text = 'Edited by Acid Dog#6601'
  220. prison.Text = 'Teleport to prison'
  221. neutral.Text = 'Neutral team(gray)'
  222. God.Text = 'FE God[cannot shoot]'
  223. InsaneAndDab.Text = 'FE Insane and Dab GUI'
  224.  
  225. -- Object Text Scaled
  226. open.TextScaled = true
  227. name.TextScaled = true
  228. btools.TextScaled = true
  229. escape.TextScaled = true
  230. exit.TextScaled = true
  231. killaura.TextScaled = true
  232. melee.TextScaled = true
  233. removedoors.TextScaled = true
  234. tools.TextScaled = true
  235. speedplus.TextScaled = true
  236. speedminus.TextScaled = true
  237. jumpplus.TextScaled = true
  238. jumpminus.TextScaled = true
  239. bypass.TextScaled = true
  240. db.TextScaled = true
  241. floor.TextScaled = true
  242. creator2.TextScaled = true
  243. prison.TextScaled = true
  244. neutral.TextScaled = true
  245. God.TextScaled = true
  246. InsaneAndDab.TextScaled = true
  247.  
  248. -- Frame Moveable
  249. frame.Active = true
  250. frame.Draggable = false
  251.  
  252. -- Open Function
  253. open.MouseButton1Down:connect(function()
  254. frame.Visible = true
  255. frame:TweenPosition(UDim2.new(0,5,0.4,0), "Out", "Bounce",1 ,true)
  256. open.Visible = false
  257. open.Position = UDim2.new(0,0,0,0)
  258. end)
  259.  
  260. --Creator2
  261. creator2.MouseButton1Down:connect(function()
  262. local message = Instance.new("Message",game.Workspace)
  263. message.Text = 'Edited by Acid Dog#6601'
  264. wait(2)
  265. message:Destroy()
  266. end)
  267.  
  268. -- Close/Exit Function
  269. exit.MouseButton1Down:connect(function()
  270. frame:TweenPosition(UDim2.new(0.1,-400,0.4,0) , "Out", "Quad", 1, true)
  271. wait(1)
  272. frame.Visible = false
  273. wait(.1)
  274. open.Visible = true
  275. open:TweenPosition(UDim2.new(0,2,0.8,15), "Out", "Bounce",1 ,true)
  276. end)
  277.  
  278. --open function
  279. open.MouseButton1Down:connect(function()
  280. local message = Instance.new("Message",game.Workspace)
  281. message.Text = 'Edited by Acid Dog#6601!'
  282. wait(0.9)
  283. message:Destroy()
  284. end)
  285.  
  286. -- Btools Function
  287. btools.MouseButton1Down:connect(function()
  288. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 2
  289. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 3
  290. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 4
  291. loadstring(game:GetObjects('rbxassetid://552440069')[1].Source)()
  292. end)
  293.  
  294. -- Remove Doors Function
  295. removedoors.MouseButton1Down:connect(function()
  296. game.Workspace.Doors:Destroy()
  297. end)
  298.  
  299. -- Guns Function
  300. tools.MouseButton1Down:connect(function()
  301. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  302. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  303. print(lol)
  304. end
  305. end)
  306.  
  307. -- Melee Function
  308. melee.MouseButton1Down:connect(function()
  309. local weapons = {"Sharpened stick", "Extendo mirror"}
  310. for i, v in pairs(game.ReplicatedStorage.Tools:GetChildren()) do
  311. for j, k in pairs(weapons) do
  312. if v.Name == k then
  313. v:Clone().Parent = game.Players.LocalPlayer.Backpack
  314. end
  315. end
  316. end
  317. end)
  318.  
  319. -- Escape Function
  320. escape.MouseButton1Down:connect(function()
  321. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(283, 72, 2213)
  322. end)
  323.  
  324. -- Kill Aura Function
  325. killaura.MouseButton1Down:connect(function()
  326. while wait(0.1) do
  327. for i, plr in pairs(game.Players:GetChildren()) do
  328. if plr.Name ~= game.Players.LocalPlayer.Name then
  329. for i = 1, 10 do
  330. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  331. end
  332. end
  333. end
  334. end
  335. end)
  336.  
  337. -- WalkSpeed Increase
  338. speedplus.MouseButton1Down:connect(function()
  339. p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed + 10
  340. end)
  341.  
  342. -- WalkSpeed Decrease
  343. speedminus.MouseButton1Down:connect(function()
  344. p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed - 10
  345. end)
  346.  
  347. -- JumpPower Increase
  348. jumpplus.MouseButton1Down:connect(function()
  349. p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower + 10
  350. end)
  351.  
  352. -- JumpPower Decrease
  353. jumpminus.MouseButton1Down:connect(function()
  354. p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower - 10
  355. end)
  356.  
  357. -- Bypass Taser , Arrest
  358. bypass.MouseButton1Down:connect(function()
  359. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  360. game.Players.LocalPlayer.CharacterAdded:connect(function()
  361. game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
  362. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  363. end)
  364. local message = Instance.new("Message",game.Workspace)
  365. message.Text = 'Taser and Arrest have been Bypassed!'
  366. wait(1)
  367. message:Destroy()
  368. end)
  369.  
  370. -- Disable Bypass Taser , Arrest
  371. db.MouseButton1Down:connect(function()
  372. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = false
  373. game.Players.LocalPlayer.CharacterAdded:connect(function()
  374. game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
  375. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = false
  376. end)
  377. local message = Instance.new("Message",game.Workspace)
  378. message.Text = 'Bypass is Disabled!'
  379. wait(1)
  380. message:Destroy()
  381. end)
  382.  
  383. -- Get Tools On the Floor
  384. floor.MouseButton1Down:connect(function()
  385. for i, v in pairs(game.Workspace["Prison_ITEMS"].single:GetChildren()) do
  386. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  387. end
  388. end)
  389.  
  390. -- Prison Function
  391. prison.MouseButton1Down:connect(function()
  392. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(900, 97, 2400)
  393. end)
  394.  
  395. --neutral Function
  396. neutral.MouseButton1Down:connect(function()
  397. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  398. end)
  399.  
  400. -- God Function
  401. God.MouseButton1Down:connect(function()
  402. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  403. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  404. l.Parent = game.Players.LocalPlayer.Character
  405. l.Name = "Humanoid"
  406. wait(0.1)
  407. game.Players.LocalPlayer.Character["1"]:Destroy()
  408. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  409. game.Players.LocalPlayer.Character.Animate.Disabled = true
  410. wait(0.1)
  411. game.Players.LocalPlayer.Character.Animate.Disabled = false
  412. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  413. end)
  414.  
  415. -- InsaneAndDab Function
  416. InsaneAndDab.MouseButton1Down:connect(function()
  417. -- Objects
  418.  
  419. local ScreenGui = Instance.new("ScreenGui")
  420. local Frame = Instance.new("Frame")
  421. local Credits = Instance.new("TextLabel")
  422. local insaneall = Instance.new("TextButton")
  423. local daball = Instance.new("TextButton")
  424. local dabothers = Instance.new("TextButton")
  425. local insaneothers = Instance.new("TextButton")
  426.  
  427. -- Properties
  428.  
  429. ScreenGui.Parent = game.CoreGui
  430.  
  431. Frame.Parent = ScreenGui
  432. Frame.Active = true
  433. Frame.BackgroundColor3 = Color3.new(255,255,255)
  434. Frame.BackgroundTransparency = 0.25
  435. Frame.Draggable = true
  436. Frame.Position = UDim2.new(0, 341, 0, 41)
  437. Frame.Size = UDim2.new(0, 358, 0, 423)
  438.  
  439. Credits.Name = "Credits"
  440. Credits.Parent = Frame
  441. Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  442. Credits.BackgroundTransparency = 0.5
  443. Credits.Position = UDim2.new(0, 79, 0, 0)
  444. Credits.Size = UDim2.new(0, 200, 0, 50)
  445. Credits.Font = Enum.Font.SciFi
  446. Credits.FontSize = Enum.FontSize.Size24
  447. Credits.Text = "By Cozmo"
  448. Credits.TextColor3 = Color3.new(0,0,255)
  449. Credits.TextSize = 24
  450.  
  451. insaneall.Name = "insaneall"
  452. insaneall.Parent = Frame
  453. insaneall.BackgroundColor3 = Color3.new(0, 0, 255)
  454. insaneall.BackgroundTransparency = 0.5
  455. insaneall.Position = UDim2.new(0, 0, 0, 106)
  456. insaneall.Size = UDim2.new(0, 155, 0, 50)
  457. insaneall.Font = Enum.Font.SciFi
  458. insaneall.FontSize = Enum.FontSize.Size18
  459. insaneall.Text = "FE Insane all"
  460. insaneall.TextColor3 = Color3.new(0,0,255)
  461. insaneall.TextSize = 18
  462.  
  463. daball.Name = "daball"
  464. daball.Parent = Frame
  465. daball.BackgroundColor3 = Color3.new(0, 0, 255)
  466. daball.BackgroundTransparency = 0.5
  467. daball.Position = UDim2.new(0, 0, 0, 228)
  468. daball.Size = UDim2.new(0, 155, 0, 50)
  469. daball.Font = Enum.Font.SciFi
  470. daball.FontSize = Enum.FontSize.Size18
  471. daball.Text = "FE Dab all"
  472. daball.TextColor3 = Color3.new(0,0,255)
  473. daball.TextSize = 18
  474.  
  475. dabothers.Name = "dabothers"
  476. dabothers.Parent = Frame
  477. dabothers.BackgroundColor3 = Color3.new(0, 0, 255)
  478. dabothers.BackgroundTransparency = 0.5
  479. dabothers.Position = UDim2.new(0, 203, 0, 230)
  480. dabothers.Size = UDim2.new(0, 155, 0, 50)
  481. dabothers.Font = Enum.Font.SciFi
  482. dabothers.FontSize = Enum.FontSize.Size18
  483. dabothers.Text = "FE Dab others"
  484. dabothers.TextColor3 = Color3.new(0,0,255)
  485. dabothers.TextSize = 18
  486.  
  487. insaneothers.Name = "insaneothers"
  488. insaneothers.Parent = Frame
  489. insaneothers.BackgroundColor3 = Color3.new(0, 0, 255)
  490. insaneothers.BackgroundTransparency = 0.5
  491. insaneothers.Position = UDim2.new(0, 203, 0, 105)
  492. insaneothers.Size = UDim2.new(0, 155, 0, 50)
  493. insaneothers.Font = Enum.Font.SciFi
  494. insaneothers.FontSize = Enum.FontSize.Size18
  495. insaneothers.Text = "FE Insane others"
  496. insaneothers.TextColor3 = Color3.new(0,0,255)
  497. insaneothers.TextSize = 18
  498.  
  499. insaneall.MouseButton1Click:connect(function()
  500. for i,v in pairs(game.Players:GetPlayers()) do
  501. local AnimationId = "33796059"
  502. local Anim = Instance.new("Animation")
  503. Anim.AnimationId = "rbxassetid://"..AnimationId
  504. local k = v.Character.Humanoid:LoadAnimation(Anim)
  505. k:Play()
  506. k:AdjustSpeed(90)
  507. end
  508. end)
  509. insaneothers.MouseButton1Click:connect(function()
  510. for i,v in pairs(game.Players:GetPlayers()) do
  511. if v.Name~=game.Players.LocalPlayer.Name then
  512. local AnimationId = "33796059"
  513. local Anim = Instance.new("Animation")
  514. Anim.AnimationId = "rbxassetid://"..AnimationId
  515. local k = v.Character.Humanoid:LoadAnimation(Anim)
  516. k:Play()
  517. k:AdjustSpeed(90)
  518. end
  519. end
  520. end)
  521. dabothers.MouseButton1Click:connect(function()
  522. for i,v in pairs(game.Players:GetPlayers()) do
  523. if v.Name~=game.Players.LocalPlayer.Name then
  524. local AnimationId = "248263260"
  525. local Anim = Instance.new("Animation")
  526. Anim.AnimationId = "rbxassetid://"..AnimationId
  527. local k = v.Character.Humanoid:LoadAnimation(Anim)
  528. k:Play()
  529. k:AdjustSpeed(1)
  530. end
  531. end
  532. end)
  533. daball.MouseButton1Click:connect(function()
  534. for i,v in pairs(game.Players:GetPlayers()) do
  535. local AnimationId = "248263260"
  536. local Anim = Instance.new("Animation")
  537. Anim.AnimationId = "rbxassetid://"..AnimationId
  538. local k = v.Character.Humanoid:LoadAnimation(Anim)
  539. k:Play()
  540. k:AdjustSpeed(1)
  541. end
  542. end)
  543. end)
Add Comment
Please, Sign In to add comment