Advertisement
igdegoo

Ultimate God Script

Nov 6th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. wait(5)
  2. p = game.Players.LocalPlayer
  3. c = p.Character
  4. h = c.Humanoid
  5. h.MaxHealth = math.huge
  6. h.Health = math.huge
  7. l = game.Lighting
  8. l.TimeOfDay = "00:00:00"
  9. l.GlobalShadows = false
  10. l.Brightness = 2
  11. s = Instance.new("Sound")
  12. s.SoundId = "rbxassetid://863858780"
  13. s.Parent = c
  14. s:Play()
  15. b = Instance.new("BillboardGui")
  16. tb = Instance.new("TextLabel")
  17. tb.BackgroundTransparency = 1
  18. tb.Font = Enum.Font.Cartoon
  19. tb.TextColor3 = Color3.new(255,255,255)
  20. tb.Text = "YOU'RE ALL DEAD"
  21. tb.TextScaled = true
  22. tb.Size = UDim2.new(5, 0, 1, 0)
  23. tb.Parent = b
  24. tb.TextStrokeTransparency = 0
  25. tb.TextStrokeColor3 = Color3.new(0,0,0)
  26. b.Size = UDim2.new(2, 0, 2, 0)
  27. b.StudsOffset = Vector3.new(-4, 2, 0)
  28. b.Parent = c.Head
  29. b.Adornee = c.Head
  30. mouse = p:GetMouse()
  31. local killscript = coroutine.create(function()
  32. local function KILL()
  33. local target = mouse.Target
  34. local h1 = target.Parent:FindFirstChild("Humanoid")
  35. if h1 ~= nil then
  36. h1.Health = 0
  37. local s1 = Instance.new("Sound")
  38. s1.SoundId = "rbxassetid://384201418"
  39. s1.Parent = h1.Parent.Head
  40. s1.Volume = 1
  41. s1:Play()
  42. local f = Instance.new("Fire")
  43. f.Parent = h1.Parent.Head
  44. h1.Parent.Head.BrickColor = BrickColor.Black()
  45. end
  46. end
  47. mouse.Button1Down:connect(KILL)
  48. end)
  49. local explosionscript = coroutine.create(function()
  50. local function BOOM()
  51. local e = Instance.new("Explosion")
  52. e.Position = mouse.Hit.p
  53. e.Parent = workspace
  54. end
  55. mouse.Button2Down:connect(BOOM)
  56. end)
  57.  
  58. coroutine.resume(killscript)
  59. coroutine.resume(explosionscript)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement