Advertisement
TheRobloxGuy

Made In Heaven

Nov 7th, 2020 (edited)
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. player = owner
  2. local tool = Instance.new("Tool")
  3. local sound = Instance.new("Sound")
  4. music = Instance.new("Sound")
  5. music.SoundId = "rbxassetid://2915488974"
  6. music.Playing = true
  7. music.Looped = true
  8. sound.Parent = owner.Character.HumanoidRootPart
  9. sound.SoundId = "rbxassetid://4095610922"
  10. sound.Volume = 3
  11. tool.Parent = owner.Backpack
  12. local tool2 = Instance.new("Tool")
  13. tool2.Parent = owner.Backpack
  14. tool2.Name = "Universe Reset"
  15. tool2.RequiresHandle = false
  16. local BillboardGui = Instance.new("BillboardGui")
  17. local TextLabel = Instance.new("TextLabel")
  18. BillboardGui.Parent = owner.Character.Head
  19. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20. BillboardGui.Active = true
  21. BillboardGui.LightInfluence = 1.000
  22. BillboardGui.Size = UDim2.new(5, 0, 1, 0)
  23. BillboardGui.StudsOffset = Vector3.new(0, 1.5, 0)
  24.  
  25. TextLabel.Parent = BillboardGui
  26. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  27. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  28. TextLabel.Font = Enum.Font.Arcade
  29. TextLabel.Text = ""
  30. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  31. TextLabel.TextScaled = true
  32. TextLabel.TextSize = 14.000
  33. TextLabel.TextWrapped = true
  34. TextLabel.BackgroundTransparency = 1
  35.  
  36. tool.RequiresHandle = false
  37. tool.Name = "Time Accelerate"
  38. cd = false
  39.  
  40.  
  41. tool.Activated:Connect(function()
  42. if cd == false then
  43. cd = true
  44. TextLabel.BackgroundTransparency = 0
  45. TextLabel.Text = "This"
  46. wait(0.4)
  47. TextLabel.Text = "This is..."
  48. wait(0.4)
  49. TextLabel.Text = "This is Heaven"
  50. owner.Character.Humanoid.WalkSpeed = 100
  51. sound.Playing = true
  52. wait(5)
  53. cd = false
  54. TextLabel.BackgroundTransparency = 1
  55. TextLabel.Text = ""
  56. owner.Character.Humanoid.WalkSpeed = 16
  57. end
  58.  
  59. end)
  60.  
  61. tool2.Activated:Connect(function()
  62.  
  63.  
  64. game.Lighting.FogEnd = 0
  65. game.Lighting.FogColor = Color3.new(13, 88, 185)
  66. wait(0.2)
  67. game.Lighting.FogColor = Color3.new(1, 0, 0.0156863)
  68. wait(0.2)
  69. game.Lighting.FogColor = Color3.new(192, 192, 192)
  70. wait(0.2)
  71. game.Lighting.FogEnd = 100000
  72. wait(5)
  73. cd = false
  74. TextLabel.BackgroundTransparency = 1
  75. TextLabel.Text = ""
  76. owner.Character.Humanoid.WalkSpeed = 16
  77.  
  78.  
  79. end)
  80.  
  81. while true do
  82. if cd == true then
  83. game.Lighting.ClockTime = game.Lighting.ClockTime + 1
  84. end
  85. wait()
  86. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement