Advertisement
kik767868767

Untitled

Feb 24th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. print("Robolxtm's Player Enhancer script v1.0")
  2. print("--------------------------------------")
  3. local health2 = math.random(10,1000)
  4. local player = workspace.Robolxtm
  5. local healthresult = player.Humanoid.MaxHealth*health2
  6. print("Health multiplier:",health2,". Health after will be",healthresult..".")
  7. local speed2 = math.random(2,5)
  8. local speedresult = player.Humanoid.WalkSpeed*speed2
  9. print("Speed multiplier:",speed2,". Speed after will be",speedresult..".")
  10. print("Doing Enhancements...")
  11. player.Humanoid.MaxHealth = healthresult
  12. player.Humanoid.WalkSpeed = speedresult
  13. print("Done, making head label...")
  14. local l = Instance.new("ParticleEmitter")
  15. l.Parent = player.Head
  16. l.Lifetime = NumberRange.new(math.huge,math.huge)
  17. l.Speed = NumberRange.new(0, 0)
  18. local txt = Instance.new("BillboardGui", workspace.Robolxtm)
  19. txt.Adornee = workspace.Robolxtm.Head
  20. txt.Name = "_name"
  21. txt.Size = UDim2.new(2, 0, 1.2, 0)
  22. txt.StudsOffset = Vector3.new(-9, 8, 0)
  23. local text = Instance.new("TextLabel", txt)
  24. text.Size = UDim2.new(10, 0, 7, 0)
  25. text.TextScaled = true
  26. text.TextTransparency = 0
  27. text.BackgroundTransparency = 1
  28. text.Font = "Code"
  29. text.TextColor3 = Color3.fromRGB(0,0,255)
  30. print("Done!")
  31. text.text = "Robolxtm"
  32. while wait(9) do
  33. l:Emit(90)
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement