Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(5)
- p = game.Players.LocalPlayer
- c = p.Character
- h = c.Humanoid
- h.MaxHealth = math.huge
- h.Health = math.huge
- l = game.Lighting
- l.TimeOfDay = "00:00:00"
- l.GlobalShadows = false
- l.Brightness = 2
- s = Instance.new("Sound")
- s.SoundId = "rbxassetid://863858780"
- s.Parent = c
- s:Play()
- b = Instance.new("BillboardGui")
- tb = Instance.new("TextLabel")
- tb.BackgroundTransparency = 1
- tb.Font = Enum.Font.Cartoon
- tb.TextColor3 = Color3.new(255,255,255)
- tb.Text = "YOU'RE ALL DEAD"
- tb.TextScaled = true
- tb.Size = UDim2.new(5, 0, 1, 0)
- tb.Parent = b
- tb.TextStrokeTransparency = 0
- tb.TextStrokeColor3 = Color3.new(0,0,0)
- b.Size = UDim2.new(2, 0, 2, 0)
- b.StudsOffset = Vector3.new(-4, 2, 0)
- b.Parent = c.Head
- b.Adornee = c.Head
- mouse = p:GetMouse()
- local killscript = coroutine.create(function()
- local function KILL()
- local target = mouse.Target
- local h1 = target.Parent:FindFirstChild("Humanoid")
- if h1 ~= nil then
- h1.Health = 0
- local s1 = Instance.new("Sound")
- s1.SoundId = "rbxassetid://384201418"
- s1.Parent = h1.Parent.Head
- s1.Volume = 1
- s1:Play()
- local f = Instance.new("Fire")
- f.Parent = h1.Parent.Head
- h1.Parent.Head.BrickColor = BrickColor.Black()
- end
- end
- mouse.Button1Down:connect(KILL)
- end)
- local explosionscript = coroutine.create(function()
- local function BOOM()
- local e = Instance.new("Explosion")
- e.Position = mouse.Hit.p
- e.Parent = workspace
- end
- mouse.Button2Down:connect(BOOM)
- end)
- coroutine.resume(killscript)
- coroutine.resume(explosionscript)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement