karobloxYT

Tick

Nov 26th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.28 KB | None | 0 0
  1. -- gjwi
  2.  
  3. -- v1
  4.  
  5. iPlayer = game.Players.LocalPlayer.Name
  6. local Gui = Instance.new('ScreenGui', game.Players[iPlayer].PlayerGui)
  7. Gui.Name = 'Apoc'
  8. local Grab_f = Instance.new('Frame', Gui)
  9. Grab_f.Name = 'Grab'
  10. Grab_f.Active = true
  11. Grab_f.BackgroundColor3 = Color3.new(255,255,127/255)
  12. Grab_f.BackgroundTransparency = 0.5
  13. Grab_f.BorderSizePixel = 0
  14. Grab_f.Position = UDim2.new(0.5,-150,0.5,-92)
  15. Grab_f.Size = UDim2.new(0,300,0,24)
  16. Grab_f.Draggable = true
  17. local Close = Instance.new('TextButton', Grab_f)
  18. Close.Name = 'Close'
  19. Close.BackgroundTransparency = 1
  20. Close.Position = UDim2.new(1,-23,0,1)
  21. Close.Size = UDim2.new(0,22,0,22)
  22. Close.Font = 'SourceSans'
  23. Close.FontSize = 'Size18'
  24. Close.TextColor3 = Color3.new(255,255,255)
  25. Close.Text = 'X'
  26. local Body_f = Instance.new('Frame', Grab_f)
  27. Body_f.Name = 'Body'
  28. Body_f.BackgroundColor3 = Color3.new(60/255,60/255,60/255)
  29. Body_f.BackgroundTransparency = 0.5
  30. Body_f.BorderSizePixel = 0
  31. Body_f.Position = UDim2.new(0,0,0,25)
  32. Body_f.Size = UDim2.new(0,300,0,170)
  33.  
  34. Close.TextStrokeTransparency = 0.8
  35. local Title = Instance.new('TextLabel', Grab_f)
  36. Title.Name = 'Title'
  37. Title.BackgroundTransparency = 1
  38. Title.Position = UDim2.new(0,5,0,0)
  39. Title.Size = UDim2.new(0,200,1,0)
  40. Title.Font = 'SourceSansLight'
  41. Title.FontSize = 'Size18'
  42. Title.Text = "GETJIGGYWITHIT's APOC GUI (v1)"
  43. Title.TextColor3 = Color3.new(255,255,255)
  44. Title.TextStrokeColor3 = Color3.new(60/255,60/255,60/255)
  45. Title.TextStrokeTransparency = 0.6
  46. local PlayerName = Instance.new('TextBox', Body_f)
  47. PlayerName.Name = 'PlayerName'
  48. PlayerName.BorderSizePixel = 0
  49. PlayerName.Position = UDim2.new(0,10,0,10)
  50. PlayerName.Size = UDim2.new(0,280,0,30)
  51. PlayerName.Font = 'SourceSans'
  52. PlayerName.FontSize = 'Size18'
  53. PlayerName.Text = 'Player name [plr]'
  54. PlayerName.BackgroundColor3 = Color3.new(255,255,255)
  55. PlayerName.TextColor3 = Color3.new(60/255,60/255,60/255)
  56. PlayerName.TextWrapped = true
  57.  
  58. local Credits = Instance.new('TextLabel', Body_f)
  59. Credits.BackgroundTransparency = 1
  60. Credits.Text = 'Credits to - Phemzy and Raspberry Pi'
  61. Credits.Position = UDim2.new(0,0,1,0)
  62. Credits.Size = UDim2.new(1,0,0,20)
  63.  
  64. local Command_God = Instance.new('TextButton', Body_f)
  65. Command_God.Name = 'God'
  66. Command_God.BackgroundColor3 = Color3.new(255,170/255,255)
  67. Command_God.BackgroundTransparency = 0.1
  68. Command_God.BorderSizePixel = 0
  69. Command_God.Position = UDim2.new(0,10,0,50)
  70. Command_God.Size = UDim2.new(0,135,0,30)
  71. Command_God.Font = 'SourceSansItalic'
  72. Command_God.FontSize = 'Size18'
  73. Command_God.Text = 'GOD [plr]'
  74. Command_God.TextColor3 = Color3.new(80/255,80/255,80/255)
  75. Command_God.TextWrapped = true
  76.  
  77. local Command_KillAll = Command_God:Clone()
  78. Command_KillAll.Name = 'KillAll'
  79. Command_KillAll.Parent = Body_f
  80. Command_KillAll.Position = UDim2.new(0,155,0,50)
  81. Command_KillAll.Text = 'KILL ALL'
  82.  
  83. local Command_KillPlr = Command_God:Clone()
  84. Command_KillPlr.Name = 'KillPlr'
  85. Command_KillPlr.Parent = Body_f
  86. Command_KillPlr.Position = UDim2.new(0,10,0,90)
  87. Command_KillPlr.Text = 'KILL [plr]'
  88.  
  89. local Command_TpMe = Command_God:Clone()
  90. Command_TpMe.Name = 'TpMe'
  91. Command_TpMe.Parent = Body_f
  92. Command_TpMe.Position = UDim2.new(0,10,0,130)
  93. Command_TpMe.Text = 'TP [plr] ME'
  94.  
  95. local Command_TpTo = Command_God:Clone()
  96. Command_TpTo.Name = 'TpTo'
  97. Command_TpTo.Parent = Body_f
  98. Command_TpTo.Position = UDim2.new(0,155,0,130)
  99. Command_TpTo.Text = 'TP ME [plr]'
  100.  
  101. local Command_TpAllMe = Command_God:Clone()
  102. Command_TpAllMe.Name = 'TpAllMe'
  103. Command_TpAllMe.Parent = Body_f
  104. Command_TpAllMe.Position = UDim2.new(0,155,0,90)
  105. Command_TpAllMe.Text = 'TP ALL ME'
  106.  
  107. Command_God.MouseButton1Down:connect(function()
  108. Player = game.Workspace:FindFirstChild(PlayerName.Text)
  109. while wait() do
  110. game.Lighting.Remote.AddHealth:FireServer(Player.Humanoid, 5000000)
  111. end
  112. end)
  113.  
  114. Command_KillAll.MouseButton1Down:connect(function()
  115. for i,v in pairs(game.Players:GetPlayers()) do
  116. if v.Name == game.Players.LocalPlayer.Name then
  117. print('nope')
  118. else
  119. getPlayer = game.Workspace:FindFirstChild(v.Name)
  120. wait(.01)
  121. game.Lighting.Remote.AddHealth:FireServer(getPlayer.Humanoid, -5345355)
  122. end
  123. end
  124. end)
  125.  
  126. Command_KillPlr.MouseButton1Down:connect(function()
  127. gitPlayer = game.Workspace:FindFirstChild(PlayerName.Text)
  128. game.Lighting.Remote.AddHealth:FireServer(gitPlayer.Humanoid, -5000000)
  129. end)
  130.  
  131. Command_TpMe.MouseButton1Down:connect(function()
  132. gitPlayer = PlayerName.Text
  133. game.Lighting.Remote:WaitForChild("TeleportRequest"):InvokeServer("To Me", math.floor(tick() % 1 * 100000), gitPlayer)
  134. end)
  135.  
  136. Command_TpTo.MouseButton1Down:connect(function()
  137. gitPlayer = PlayerName.Text
  138. game.Lighting.Remote:WaitForChild("TeleportRequest"):InvokeServer("Me To", math.floor(tick() % 1 * 100000), gitPlayer)
  139. end)
  140.  
  141. Command_TpAllMe.MouseButton1Down:connect(function()
  142. for i,v in pairs(game.Players:GetPlayers()) do
  143. if v.Name == game.Players.LocalPlayer.Name then
  144. print'nope'
  145. else
  146. wait(.01)
  147. game.Lighting.Remote:WaitForChild("TeleportRequest"):InvokeServer("To Me", math.floor(tick() % 1 * 100000), v.Name)
  148. end
  149. end
  150. end)
  151.  
  152. Close.MouseButton1Down:connect(function()
  153. if Body_f.Visible == true then
  154. Body_f.Visible = false
  155. Close.Text = '+'
  156. elseif Body_f.Visible == false then
  157. Body_f.Visible = true
  158. Close.Text = 'X'
  159. end
  160. end)
  161.  
  162. --
  163.  
  164. while wait() do
  165. Credits.TextColor3 = Color3.new(1,0,0)
  166. for i=1,15 do
  167. game:GetService("RunService").RenderStepped:wait()
  168. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g+(17/255),Credits.TextColor3.b)
  169. end
  170. for i=1,15 do
  171. game:GetService("RunService").RenderStepped:wait()
  172. Credits.TextColor3 = Color3.new(Credits.TextColor3.r-(17/255),Credits.TextColor3.g,Credits.TextColor3.b)
  173. end
  174. for i=1,15 do
  175. game:GetService("RunService").RenderStepped:wait()
  176. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g,Credits.TextColor3.b+(17/255))
  177. end
  178. for i=1,15 do
  179. game:GetService("RunService").RenderStepped:wait()
  180. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g-(17/255),Credits.TextColor3.b)
  181. end
  182. for i=1,15 do
  183. game:GetService("RunService").RenderStepped:wait()
  184. Credits.TextColor3 = Color3.new(Credits.TextColor3.r+(17/255),Credits.TextColor3.g,Credits.TextColor3.b)
  185. end
  186. for i=1,15 do
  187. game:GetService("RunService").RenderStepped:wait()
  188. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g,Credits.TextColor3.b-(17/255))
  189. end
  190. end
Add Comment
Please, Sign In to add comment