Advertisement
okban

Untitled

Apr 12th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. --Made by INOOBE_YT
  2. --Put this script into Workspace.
  3.  
  4. local Auth = {"KYLETHORNTON", "Player1"}
  5. local Boost = 5
  6.  
  7.  
  8. game.Players.PlayerAdded:connect(function(Player)
  9. Player.CharacterAdded:connect(function(Character)
  10. for i = 1,#Auth do
  11. if string.lower(Character.Name) == string.lower(Auth[i]) then
  12. Character:WaitForChild("Humanoid").WalkSpeed = Character:WaitForChild("Humanoid").WalkSpeed * Boost
  13. local Orb = Instance.new("Part", Character)
  14. Orb.BrickColor = BrickColor.new("Institutional white")
  15. Orb.Material = "Neon"
  16. Orb.Size = Vector3.new(1.4, 1.4, 1.4)
  17. Orb.Anchored = false
  18. Orb.CanCollide = false
  19. local Mesh = Instance.new("SpecialMesh", Orb)
  20. Mesh.MeshType = "Sphere"
  21. local BP = Instance.new("BodyPosition", Orb)
  22. BP.MaxForce = Vector3.new(10000, 10000, 10000)
  23. local PE = Instance.new("ParticleEmitter", Orb)
  24. PE.Texture = "http://www.roblox.com/asset/?id=402933094"
  25. PE.Size = NumberSequence.new(0.2)
  26. PE.Lifetime = NumberRange.new(0.5, 0.8)
  27. PE.Rate = 30
  28. while wait() do
  29. BP.Position = Character:FindFirstChild("Torso").CFrame * CFrame.new(2, 2, 1.4).p
  30. end
  31. end
  32. end
  33. end)
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement