Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local bomb = Instance.new("TextButton")
- local sword = Instance.new("TextButton")
- local close = Instance.new("TextButton")
- local TextButton = Instance.new("TextButton")
- -- Properties
- ScreenGui.Name = "City Life Script Pack"
- ScreenGui.Parent = game.CoreGui
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.Position = UDim2.new(0, 0, 0.363636374, 0)
- Frame.Size = UDim2.new(0, 361, 0, 169)
- Frame.Active = true
- Frame.Draggable = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0.333333, 1, 1)
- TextLabel.Position = UDim2.new(0, 0, -0.00591715984, 0)
- TextLabel.Size = UDim2.new(0, 361, 0, 51)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.FontSize = Enum.FontSize.Size14
- TextLabel.Text = "City Life Script Pack"
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- bomb.Name = "bomb"
- bomb.Parent = Frame
- bomb.BackgroundColor3 = Color3.new(1, 1, 1)
- bomb.Position = UDim2.new(0, 0, 0.295857996, 0)
- bomb.Size = UDim2.new(0, 170, 0, 38)
- bomb.Font = Enum.Font.SourceSans
- bomb.FontSize = Enum.FontSize.Size14
- bomb.Text = "BOMB"
- bomb.TextSize = 14
- sword.Name = "sword"
- sword.Parent = Frame
- sword.BackgroundColor3 = Color3.new(1, 1, 1)
- sword.Position = UDim2.new(0.470914125, 0, 0.295857996, 0)
- sword.Size = UDim2.new(0, 191, 0, 38)
- sword.Font = Enum.Font.SourceSans
- sword.FontSize = Enum.FontSize.Size14
- sword.Text = "SWORD"
- sword.TextSize = 14
- close.Name = "close"
- close.Parent = Frame
- close.BackgroundColor3 = Color3.new(0.333333, 1, 1)
- close.Position = UDim2.new(-0.0166204982, 0, 0.520710051, 0)
- close.Size = UDim2.new(0, 367, 0, 81)
- close.Font = Enum.Font.SourceSans
- close.FontSize = Enum.FontSize.Size14
- close.Text = "BOMB VEST"
- close.TextScaled = true
- close.TextSize = 14
- close.TextWrapped = true
- TextButton.Parent = ScreenGui
- TextButton.BackgroundColor3 = Color3.new(0.333333, 1, 1)
- TextButton.Position = UDim2.new(0, 0, 0.697628498, 0)
- TextButton.Size = UDim2.new(0, 200, 0, 50)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.FontSize = Enum.FontSize.Size14
- TextButton.Text = "OPEN"
- TextButton.TextScaled = true
- TextButton.TextSize = 14
- TextButton.TextWrapped = true
- -- Functions
- bomb.MouseButton1Down:connect(function()
- assets = {540034631, 178993946, 461493477, 110288809}
- me = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid'
- for i,v in pairs(me.Parent:GetChildren()) do
- if v:IsA'Accoutrement' then v.Parent = nil end
- end
- for i,v in pairs(assets) do
- game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('xdd', tostring(game:GetService'MarketplaceService':GetProductInfo(v).AssetTypeId), v)
- end
- me.WalkSpeed = 50 --same
- mouse = game:GetService'Players'.LocalPlayer:GetMouse()
- exploded = false
- boom = mouse.Button1Down:connect(function()
- if exploded == true then return end
- exploded = true
- game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('boom', '8', '1527622')
- print'exploding!!!'
- exploded = true
- boom:Disconnect()
- end)
- end)
- sword.MouseButton1Down:connect(function()
- --how to hammer 101 this only works for city life--
- plr = "Whoosh_Games" --player to give tool to
- plr = game:GetService'Players'[plr]
- game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '7', '1055299')
- lp = game:GetService'Players'.LocalPlayer
- hat = lp.Character:WaitForChild'meme'
- hammer = hat.GravityHammer
- hammer.Parent = lp:FindFirstChildOfClass'Backpack'
- --DIRTY HACKS TO PARENT HAT/TOOLS WITH REPLICATION ON FE--
- hat.Parent = nil
- hammer.Parent = lp.Character
- game:GetService'RunService'.Stepped:wait()
- hammer.Parent = plr.Character
- for i = 1,3 do
- local lol = lp:FindFirstChildOfClass'Backpack':FindFirstChildOfClass'HopperBin'
- if lol:FindFirstChild'LocalScript' then lol:Destroy() end
- end
- end)
- close.MouseButton1Down:connect(function()
- --Leaked by CrazyExploitz (https://youtube.com/fuzioncrazyexploitz)
- --Cant tell you the original creator for risk of being caught
- --Here is the link to the game it works on https://www.roblox.com/games/647711404/City-Life
- --Enjoy rekking oders in fe lel
- local Me = game:GetService("Players").LocalPlayer --You cannot use this on someone else. srry
- local Char = Me.Character
- local Torso = Char.Torso
- local TickWait = 1
- local Color = "Medium stone gray"
- local Dead = false
- local Tool = Instance.new("HopperBin", Me.Backpack)
- Tool.Name = "Bomb Vest"
- local Position = Vector3.new(0,100,0)
- function NewPart(Parent)
- local Part = Instance.new("Part", Parent)
- Part.CanCollide = false
- Part.FormFactor = "Custom"
- Part.Position = Position
- Part.TopSurface = "Smooth"
- Part.BottomSurface = "Smooth"
- Part.BrickColor = BrickColor.new(Color)
- Position = Position + Vector3.new(0,Part.Size.Y + 10,0)
- return Part
- end
- local Model = Char:FindFirstChild("Bomb")
- if Model then Model:Destroy() end
- Model = Instance.new("Model", Char)
- Model.Name = "Bomb"
- local Belt = NewPart(Model)
- Belt.Size = Vector3.new(2.2,0.5,1.2)
- local Weld = Instance.new("Weld", Belt)
- Weld.Part0 = Belt
- Weld.Part1 = Torso
- Weld.C0 = CFrame.new(0,1.1,0)
- local Light = Instance.new("PointLight", Belt)
- Light.Range = 15
- Light.Brightness = 5
- Light.Color = Color3.new(1,0,0)
- local Beep = Instance.new("Sound", Belt)
- Beep.SoundId = "http://www.roblox.com/asset/?id=188588790"
- local ExplodeSound = Instance.new("Sound", Belt)
- ExplodeSound.SoundId = "http://www.roblox.com/asset/?id="..(tonumber((math.ceil(1776.66^2)+17).."."..string.rep("36",3))*77)+0.00003 --144507765
- ExplodeSound.Pitch = 2.8
- ExplodeSound.Volume = 3
- local Back = NewPart(Model)
- Back.Size = Vector3.new(1.5,1.5,0.5)
- local Weld = Instance.new("Weld", Back)
- Weld.Part0 = Back
- Weld.Part1 = Torso
- Weld.C0 = CFrame.new(0,0.1,-0.75)
- local StrapLeft = NewPart(Model)
- StrapLeft.Size = Vector3.new(0.2,0.5,1.6)
- local Weld = Instance.new("Weld", StrapLeft)
- Weld.Part0 = StrapLeft
- Weld.Part1 = Torso
- Weld.C0 = CFrame.new(0.65,-0.9,-0.2)
- local BuckleLeft = NewPart(Model)
- BuckleLeft.Size = Vector3.new(0.2,1.5,0.2)
- local Weld = Instance.new("Weld", BuckleLeft)
- Weld.Part0 = BuckleLeft
- Weld.Part1 = Torso
- Weld.C0 = CFrame.new(0.65,0.1,0.5)
- local StrapRight = NewPart(Model)
- StrapRight.Size = Vector3.new(0.2,0.5,1.6)
- local Weld = Instance.new("Weld", StrapRight)
- Weld.Part0 = StrapRight
- Weld.Part1 = Torso
- Weld.C0 = CFrame.new(-0.65,-0.9,-0.2)
- local BuckleRight = NewPart(Model)
- BuckleRight.Size = Vector3.new(0.2,1.5,0.2)
- local Weld = Instance.new("Weld", BuckleRight)
- Weld.Part0 = BuckleRight
- Weld.Part1 = Torso
- Weld.C0 = CFrame.new(-0.65,0.1,0.5)
- Tool.Selected:connect(function(Mouse)
- TickWait = 0.3
- Mouse.Icon = "http://www.roblox.com/asset/?id=9109985"
- Mouse.Button1Down:connect(function()
- if Dead == false then
- Dead = true
- ExplodeSound:Play()
- wait(1.4)
- game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '8', '1527622')
- lp = game:GetService'Players'.LocalPlayer
- hat = lp.Character:WaitForChild'meme'
- hat.Handle.Transparency=1
- hat.Handle.Mesh:Remove()
- end
- end)
- end)
- Tool.Deselected:connect(function()
- TickWait = 1
- end)
- coroutine.wrap(function()
- repeat
- wait(TickWait)
- Light.Enabled = not Light.Enabled
- Beep:Play()
- until Dead == true
- end)()
- local grabknife = h
- function kill(plrtokill)
- --boom--
- assets = {540034631, 178993946, 461493477, 110288809}
- me = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid'
- for i,v in pairs(me.Parent:GetChildren()) do
- if v:IsA'Accoutrement' then v.Parent = nil end
- end
- for i,v in pairs(assets) do
- game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('xdd', tostring(game:GetService'MarketplaceService':GetProductInfo(v).AssetTypeId), v)
- end
- game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('boom', '8', '1527622')
- game.Players.LocalPlayer.Character.boom.BootScript.Parent=workspace[plrtokill]
- print(workspace[plrtokill] .. " has been killed")
- end
- game:GetService'RunService'.Stepped:wait()
- grabknife.Parent = plr.Character
- for i = 1,3 do
- local lol = lp:FindFirstChildOfClass'Backpack':FindFirstChildOfClass'HopperBin'
- if lol:FindFirstChild'LocalScript' then lol:Destroy() end
- end
- end)
- TextButton.MouseButton1Down:connect(function()
- Frame.Visible = true
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement