Advertisement
TheFlamingBlaster

explode

Apr 15th, 2016
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. wait(0.1)
  2. local bill = Instance.new("BillboardGui",game.Players.LocalPlayer.Character.Head)
  3. local txtlabel = Instance.new("TextLabel",bill)
  4. bill.StudsOffset = Vector3.new(0, 3, 0)
  5. txtlabel.Size = UDim2.new(0,150,0,50)
  6. txtlabel.Text = "Explosions are the perfect way to die!"
  7. txtlabel.TextColor3 = Color3.new(1/255,1/255,1/255)
  8. txtlabel.BackgroundTransparency = 1
  9. txtlabel.FontSize = Enum.FontSize.Size60
  10. char = game.workspace:findFirstChild(game.Players.LocalPlayer.Name)
  11. char:MoveTo(Vector3.new(0,0,0))
  12. X = game.Players.LocalPlayer.Character.Torso.Position.X
  13. Y = game.Players.LocalPlayer.Character.Torso.Position.Y
  14. Z = game.Players.LocalPlayer.Character.Torso.Position.Z
  15. pos = game.Players.LocalPlayer.Character.Torso.Position.X
  16. i = 0
  17. char.Humanoid.WalkSpeed = 40
  18. local sound = Instance.new("Sound",workspace)
  19. sound.SoundId = "http://www.roblox.com/asset/?id=334005443"
  20. sound.Volume = "1"
  21. sound:Play()
  22. local sky = Instance.new("Sky",game.Lighting)
  23. sky.SkyboxUp = "http://www.roblox.com/asset/?id=50657528"
  24. sky.SkyboxRt = "http://www.roblox.com/asset/?id=50657528"
  25. sky.SkyboxLf = "http://www.roblox.com/asset/?id=50657528"
  26. sky.SkyboxFt = "http://www.roblox.com/asset/?id=50657528"
  27. sky.SkyboxDn = "http://www.roblox.com/asset/?id=50657528"
  28. sky.SkyboxBk = "http://www.roblox.com/asset/?id=50657528"
  29. while pos < 249 do
  30. pos = game.Players.LocalPlayer.Character.Torso.Position.X
  31. game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = Vector3.new(250,0,0)
  32. wait(0.001)
  33. end
  34. local explosion = Instance.new("Explosion",workspace)
  35. explosion.Position = char.Torso.Position
  36.  
  37. wait(0.5)
  38. sky:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement