Advertisement
DimowForback

Gui City life

Jun 30th, 2018
918
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.03 KB | None | 0 0
  1. --this gui sucks
  2. -- Objects
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextButton = Instance.new("TextButton")
  7. local TextButton_2 = Instance.new("TextButton")
  8. local TextButton_3 = Instance.new("TextButton")
  9.  
  10. -- Properties
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(0.647059, 0.647059, 0.647059)
  16. Frame.BackgroundTransparency = 0.25
  17. Frame.BorderColor3 = Color3.new(0.415686, 0.415686, 0.415686)
  18. Frame.Position = UDim2.new(0.0280464217, 0, 0.297339588, 0)
  19. Frame.Size = UDim2.new(0, 252, 0, 191)
  20.  
  21. TextButton.Parent = Frame
  22. TextButton.BackgroundColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  23. TextButton.BackgroundTransparency = 0.44999998807907
  24. TextButton.Position = UDim2.new(0.111111112, 0, 0.0942408368, 0)
  25. TextButton.Size = UDim2.new(0, 196, 0, 31)
  26. TextButton.Font = Enum.Font.SourceSans
  27. TextButton.Text = "City life Bomb Vest"
  28. TextButton.TextColor3 = Color3.new(0, 0, 0)
  29. TextButton.TextSize = 14
  30. TextButton.MouseButton1Down:connect(function()
  31. --Leaked by CrazyExploitz (https://youtube.com/fuzioncrazyexploitz)
  32. --Cant tell you the original creator for risk of being caught
  33. --Here is the link to the game it works on https://www.roblox.com/games/647711404/City-Life
  34. --Enjoy rekking oders in fe lel
  35.  
  36. local Me = game:GetService("Players").LocalPlayer --You cannot use this on someone else. srry
  37. local Char = Me.Character
  38. local Torso = Char.Torso
  39. local TickWait = 1
  40. local Color = "Medium stone gray"
  41. local Dead = false
  42.  
  43. local Tool = Instance.new("HopperBin", Me.Backpack)
  44. Tool.Name = "Bomb Vest"
  45.  
  46. local Position = Vector3.new(0,100,0)
  47. function NewPart(Parent)
  48. local Part = Instance.new("Part", Parent)
  49. Part.CanCollide = false
  50. Part.FormFactor = "Custom"
  51. Part.Position = Position
  52. Part.TopSurface = "Smooth"
  53. Part.BottomSurface = "Smooth"
  54. Part.BrickColor = BrickColor.new(Color)
  55. Position = Position + Vector3.new(0,Part.Size.Y + 10,0)
  56. return Part
  57. end
  58.  
  59. local Model = Char:FindFirstChild("Bomb")
  60. if Model then Model:Destroy() end
  61.  
  62. Model = Instance.new("Model", Char)
  63. Model.Name = "Bomb"
  64.  
  65. local Belt = NewPart(Model)
  66. Belt.Size = Vector3.new(2.2,0.5,1.2)
  67. local Weld = Instance.new("Weld", Belt)
  68. Weld.Part0 = Belt
  69. Weld.Part1 = Torso
  70. Weld.C0 = CFrame.new(0,1.1,0)
  71. local Light = Instance.new("PointLight", Belt)
  72. Light.Range = 15
  73. Light.Brightness = 5
  74. Light.Color = Color3.new(1,0,0)
  75. local Beep = Instance.new("Sound", Belt)
  76. Beep.SoundId = "http://www.roblox.com/asset/?id=188588790"
  77. local ExplodeSound = Instance.new("Sound", Belt)
  78. ExplodeSound.SoundId = "http://www.roblox.com/asset/?id="..(tonumber((math.ceil(1776.66^2)+17).."."..string.rep("36",3))*77)+0.00003 --144507765
  79. ExplodeSound.Pitch = 2.8
  80. ExplodeSound.Volume = 3
  81.  
  82. local Back = NewPart(Model)
  83. Back.Size = Vector3.new(1.5,1.5,0.5)
  84. local Weld = Instance.new("Weld", Back)
  85. Weld.Part0 = Back
  86. Weld.Part1 = Torso
  87. Weld.C0 = CFrame.new(0,0.1,-0.75)
  88.  
  89. local StrapLeft = NewPart(Model)
  90. StrapLeft.Size = Vector3.new(0.2,0.5,1.6)
  91. local Weld = Instance.new("Weld", StrapLeft)
  92. Weld.Part0 = StrapLeft
  93. Weld.Part1 = Torso
  94. Weld.C0 = CFrame.new(0.65,-0.9,-0.2)
  95.  
  96. local BuckleLeft = NewPart(Model)
  97. BuckleLeft.Size = Vector3.new(0.2,1.5,0.2)
  98. local Weld = Instance.new("Weld", BuckleLeft)
  99. Weld.Part0 = BuckleLeft
  100. Weld.Part1 = Torso
  101. Weld.C0 = CFrame.new(0.65,0.1,0.5)
  102.  
  103. local StrapRight = NewPart(Model)
  104. StrapRight.Size = Vector3.new(0.2,0.5,1.6)
  105. local Weld = Instance.new("Weld", StrapRight)
  106. Weld.Part0 = StrapRight
  107. Weld.Part1 = Torso
  108. Weld.C0 = CFrame.new(-0.65,-0.9,-0.2)
  109.  
  110. local BuckleRight = NewPart(Model)
  111. BuckleRight.Size = Vector3.new(0.2,1.5,0.2)
  112. local Weld = Instance.new("Weld", BuckleRight)
  113. Weld.Part0 = BuckleRight
  114. Weld.Part1 = Torso
  115. Weld.C0 = CFrame.new(-0.65,0.1,0.5)
  116.  
  117. Tool.Selected:connect(function(Mouse)
  118. TickWait = 0.3
  119. Mouse.Icon = "http://www.roblox.com/asset/?id=9109985"
  120.  
  121. Mouse.Button1Down:connect(function()
  122. if Dead == false then
  123. Dead = true
  124. ExplodeSound:Play()
  125. wait(1.4)
  126. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '8', '1527622')
  127. lp = game:GetService'Players'.LocalPlayer
  128. hat = lp.Character:WaitForChild'meme'
  129. hat.Handle.Transparency=1
  130. hat.Handle.Mesh:Remove()
  131. end
  132. end)
  133. end)
  134.  
  135. Tool.Deselected:connect(function()
  136. TickWait = 1
  137. end)
  138.  
  139. coroutine.wrap(function()
  140. repeat
  141. wait(TickWait)
  142. Light.Enabled = not Light.Enabled
  143. Beep:Play()
  144. until Dead == true
  145. end)()
  146. local grabknife = h
  147. function kill(plrtokill)
  148. --boom--
  149. assets = {540034631, 178993946, 461493477, 110288809}
  150. me = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid'
  151. for i,v in pairs(me.Parent:GetChildren()) do
  152. if v:IsA'Accoutrement' then v.Parent = nil end
  153. end
  154. for i,v in pairs(assets) do
  155. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('xdd', tostring(game:GetService'MarketplaceService':GetProductInfo(v).AssetTypeId), v)
  156. end
  157. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('boom', '8', '1527622')
  158. game.Players.LocalPlayer.Character.boom.BootScript.Parent=workspace[plrtokill]
  159. print(workspace[plrtokill] .. " has been killed")
  160.  
  161. end
  162.  
  163. game:GetService'RunService'.Stepped:wait()
  164. grabknife.Parent = plr.Character
  165. for i = 1,3 do
  166. local lol = lp:FindFirstChildOfClass'Backpack':FindFirstChildOfClass'HopperBin'
  167. if lol:FindFirstChild'LocalScript' then lol:Destroy() end
  168. end
  169. end)
  170. TextButton_2.Parent = Frame
  171. TextButton_2.BackgroundColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  172. TextButton_2.BackgroundTransparency = 0.44999998807907
  173. TextButton_2.Position = UDim2.new(0.111111112, 0, 0.318027109, 0)
  174. TextButton_2.Size = UDim2.new(0, 196, 0, 35)
  175. TextButton_2.Font = Enum.Font.SourceSans
  176. TextButton_2.Text = "City life Hammer"
  177. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  178. TextButton_2.TextSize = 14
  179. TextButton_2.MouseButton1Down:connect(function()
  180. --how to hammer 101--
  181. plr = "bobthedude123" --player to give tool to
  182.  
  183.  
  184. plr = game:GetService'Players'[plr]
  185. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '8', '1055299')
  186. lp = game:GetService'Players'.LocalPlayer
  187. hat = lp.Character:WaitForChild'meme'
  188. hammer = hat.GravityHammer
  189. hammer.Parent = lp:FindFirstChildOfClass'Backpack'
  190. --DIRTY HACKS TO PARENT HAT/TOOLS WITH REPLICATION ON FE--
  191. hat.Parent = nil
  192. hammer.Parent = lp.Character
  193. game:GetService'RunService'.Stepped:wait()
  194. hammer.Parent = plr.Character
  195. for i = 1,3 do
  196. local lol = lp:FindFirstChildOfClass'Backpack':FindFirstChildOfClass'HopperBin'
  197. if lol:FindFirstChild'LocalScript' then lol:Destroy() end
  198. end
  199. end)
  200. TextButton_3.Parent = Frame
  201. TextButton_3.BackgroundColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  202. TextButton_3.BackgroundTransparency = 0.44999998807907
  203. TextButton_3.Position = UDim2.new(0.111111112, 0, 0.579470158, 0)
  204. TextButton_3.Size = UDim2.new(0, 196, 0, 37)
  205. TextButton_3.Font = Enum.Font.SourceSans
  206. TextButton_3.Text = "City life esp"
  207. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  208. TextButton_3.TextSize = 14
  209. TextButton_3.MouseButton1Down:connect(function()
  210. local c=game:service("\80\108\97\121\101\114\115")local d=c.LocalPlayer
  211. function Esp(_a,aa)
  212. if _a~=c.LocalPlayer and
  213. _a.Character then
  214. local ba=_a.Character:FindFirstChild("\84\111\114\115\111")
  215. if ba then
  216. local ca=Instance.new("\66\105\108\108\98\111\97\114\100\71\117\105",workspace.CurrentCamera)local da=Instance.new("\70\114\97\109\101",ca)ca.AlwaysOnTop=true
  217. ca.Enabled=true;ca.Size=UDim2.new(3.5,0,4.7,0)ca.Name=aa;ca.Adornee=ba;ca.StudsOffset=Vector3.new(0,
  218. -0.6,0)
  219. da.BackgroundColor3=Color3.new(1,0,0)da.BackgroundTransparency=0.8;da.BorderColor3=Color3.new(0,0,0)
  220. da.BorderSizePixel=1;da.Size=UDim2.new(1,0,1,0)end end end
  221. function CheckEsp()
  222. for _a,aa in pairs(c:GetChildren())do
  223. if aa then
  224. if aa.TeamColor~=d.TeamColor then
  225. local ba=aa.Character
  226. if ba then local ca=ba:FindFirstChild("\84\111\114\115\111")if ca then
  227. local da=workspace.CurrentCamera;local _b=aa.Name
  228. if da:FindFirstChild(_b)==nil then Esp(aa,_b)end end end end end end end;while wait(1)do CheckEsp()end
  229. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement