Advertisement
igdegoo

Ultimate God Script V2

Nov 6th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. --[===[
  2. Ultimate God Script V2
  3. Created by IgDegOo / MiAmasKafon
  4.  
  5. Enjoy!
  6. --]===]
  7. wait(5)
  8. p = game:GetService("Players").LocalPlayer
  9. c = p.Character
  10. c.Humanoid.MaxHealth = math.huge
  11. c.Humanoid.Health = math.huge
  12. -- math.huge is Infinity
  13. for i, n in pairs(c:GetChildren()) do
  14. if n:IsA("BasePart") then
  15. local sbox = Instance.new("SelectionBox")
  16. sbox.LineThickness = 0.05
  17. sbox.Color3 = Color3.new(255, 0, 0)
  18. sbox.SurfaceTransparency = 0
  19. sbox.SurfaceColor3 = Color3.new(0, 255, 255)
  20. sbox.Parent = n
  21. sbox.Adornee = n
  22. end
  23. if n:IsA("Accoutrement") then
  24. n:Destroy()
  25. end
  26. if n.Name == "Head" then
  27. n.Mesh:Destroy()
  28. n.face:Destroy()
  29. end
  30. end
  31. l = game:GetService("Lighting")
  32. l.Brightness = 0
  33. l.GlobalShadows = false
  34. l.TimeOfDay = "00:00:00"
  35. pl = Instance.new("PointLight")
  36. pl.Range = 16
  37. pl.Brightness = 64
  38. pl.Parent = c.Head
  39. function kill(o)
  40. if o.Parent:FindFirstChild("Humanoid") ~= nil then
  41. o.Parent.Humanoid.Health = 0
  42. if game.Players:GetPlayerFromCharacter(o.Parent) ~= nil then
  43. game.Players:GetPlayerFromCharacter(o.Parent).CharacterAutoLoads = false
  44. end
  45. local pos = o.Parent.HumanoidRootPart.Position
  46. local grave = Instance.new("Part")
  47. grave.Name = "Head"
  48. grave.Size = Vector3.new(1, 4, 2)
  49. grave.Material = Enum.Material.Concrete
  50. grave.Position = pos + Vector3.new(0, -1, 0)
  51. grave.Anchored = true
  52. grave.CanCollide = false
  53. local model = Instance.new("Model")
  54. model.Name = "Rest In Peace, " .. o.Parent.Name
  55. model.Parent = workspace
  56. local text = Instance.new("Humanoid")
  57. text.Health = 0
  58. text.MaxHealth = 0
  59. text.Parent = model
  60. grave.Parent = model
  61. o.Parent:Destroy()
  62. local s = Instance.new("Sound")
  63. s.SoundId = "rbxassetid://165487479"
  64. s.Looped = false
  65. s.Parent = grave
  66. s.Volume = 2
  67. s:Play()
  68. end
  69. end
  70. c.HumanoidRootPart.Touched:Connect(kill)
  71. c.Humanoid.WalkSpeed = 32
  72. c.Humanoid.JumpPower = 100
  73. seinfeld = Instance.new("Sound")
  74. seinfeld.Volume = 1
  75. seinfeld.SoundId = "rbxassetid://478251105"
  76. seinfeld.Looped = true
  77. seinfeld.Parent = c.HumanoidRootPart
  78. seinfeld:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement