Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. game.Workspace.RobloxExpIoits.Humanoid:Remove();
  2. wait (2)
  3. Instance.new("Humanoid", game.Players.RobloxTacticalBacon.Character)
  4. game.Workspace.phillipaf2006.Humanoid.WalkSpeed = 200 --Set This to the speed you want--
  5. game.Workspace.phillipaf2006.Humanoid.JumpPower = 100 --Set This to the power you want--
  6.  
  7.  
  8. for i,v in pairs(colors) do
  9. local particle = Instance.new("ParticleEmitter", character.Torso)
  10. particle.Name = "Sparkely"
  11. particle.Size = NumberSequence.new(0.2, 0.2)
  12. particle.LightEmission = 100
  13. particle.Texture = "http://www.roblox.com/asset/?id=246689799"
  14. particle.Lifetime = NumberRange.new(5, 5)
  15. particle.Rate = 1000000
  16. particle.Speed = NumberRange.new(10, 10)
  17. particle.VelocitySpread = 10000
  18. particle.Color = ColorSequence.new(v, v)
  19. end
  20.  
  21. game.Lighting.TimeOfDay=1;
  22. game.Lighting.Brightness=0;
  23. game.Lighting.ShadowColor=Color3.new(0,0,0);
  24. game.Lighting.Ambient=Color3.new(0,0,0);
  25. game.Lighting.FogEnd=200;
  26. game.Lighting.FogColor=Color3.new(0,0,0);
  27. local l = game.Lighting
  28. local sky = Instance.new("Sky",l)
  29. sky.CelestialBodiesShown = false
  30. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  31. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  32. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  33. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  34. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  35. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  36. sky.StarCount = 0
  37. sky.Name = "GreenSpace"
  38.  
  39. local HBill = Instance.new("BillboardGui", Head)
  40. local HMain, HBarBack, HBar = Instance.new("Frame", HBill), Instance.new("Frame"), Instance.new("Frame")
  41. local HHealth, HName = Instance.new("TextLabel", HBarBack), Instance.new("TextLabel")
  42. HBill.Size = UDim2.new(15,0,2.2,0)
  43. HBill.Name = "Health Display"
  44. HBill.StudsOffset = Vector3.new(0,4,0)
  45. HBill.AlwaysOnTop = true
  46. HBill.Enabled=true
  47. HMain.BackgroundColor3 = Color3.new(255, 255, 255)
  48. HMain.BackgroundTransparency = 0.6
  49. HMain.Size = UDim2.new(1,0,1,0)
  50. HBarBack.Parent = HMain
  51. HBarBack.BackgroundColor3 = Color3.new(255,255,255)
  52. HBarBack.BorderColor3 = Color3.new(255,255,255)
  53. HBarBack.BorderSizePixel = 2
  54. HBarBack.Position = UDim2.new(.025, 0, .55, 0)
  55. HBarBack.Size = UDim2.new(.95, 0, .3, 0)
  56. HBar.Parent = HBarBack
  57. HBar.BackgroundColor3 = Color3.new(255, 255, 255)
  58. HBar.BorderColor3 = Color3.new(0,0,0)
  59. HBar.Size = UDim2.new(.5,0,1,0)
  60. HHealth.BackgroundTransparency = 1
  61. HHealth.Size = UDim2.new(1,0,1,0)
  62. HHealth.Font = "SourceSans"
  63. HHealth.Text = "[10/10]"
  64. HHealth.TextScaled = true
  65. HHealth.TextColor3 = Color3.new(255,255,255)
  66. HHealth.TextStrokeColor3 = Color3.new(0, 0, 0)
  67. HHealth.TextStrokeTransparency = 0
  68. HName.Parent = HMain
  69. HName.BackgroundTransparency = 1
  70. HName.Size = UDim2.new(1,0,.5,0)
  71. HName.Font = "SourceSansItalic"
  72. HName.Text = "The legend of true power"
  73. HName.TextScaled = true
  74. HName.TextColor3 = BrickColor.new("Black metallic").Color
  75. HName.TextStrokeColor3 = Color3.new(0,0,0)
  76. HName.TextStrokeTransparency = 0
  77. HName.TextYAlignment = "Top"
  78. local runServ = game:GetService("RunService").RenderStepped
  79. runServ:connect(function()
  80. HHealth.Text = "["..Humanoid.Health.."]"
  81. HBar:TweenSize(UDim2.new((Humanoid.Health/Humanoid.MaxHealth),0,1,0), _, "Linear", .4)
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement