Advertisement
DimowForback

City life is sucks gui

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