HaxRoblox

Bleutooth

Oct 2nd, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. MR = math.random()
  2. --hmm HELLO xJDiviisionZ
  3. --IM MAKING A COOL MOD
  4. la = 'Left Arm'
  5. ll = 'Left Leg'
  6. ra = 'Right Arm'
  7. rl = 'Right Leg'
  8.  
  9. local plr = game.Players.LocalPlayer
  10. local char = game.Players.LocalPlayer.Character
  11.  
  12. H = Instance.new('SelectionBox' ,char.Head)
  13. char.Head.Transparency = 1
  14. char.Head.face:Destroy()
  15. H.LineThickness = 0.05
  16. H.Adornee = (char.Head)
  17.  
  18. T = Instance.new('SelectionBox' ,char.Torso)
  19. char.Torso.Transparency = 1
  20. T.LineThickness = 0.05
  21. T.Adornee = (char.Torso)
  22.  
  23. ra = Instance.new('SelectionBox' ,char['Right Arm'])
  24. char['Right Arm'].Transparency = 1
  25. ra.LineThickness = 0.05
  26. ra.Adornee = (char['Right Arm'])
  27.  
  28. la = Instance.new('SelectionBox' ,char['Left Arm'])
  29. char['Left Arm'].Transparency = 1
  30. la.LineThickness = 0.05
  31. la.Adornee = (char['Left Arm'])
  32.  
  33. rl = Instance.new('SelectionBox' ,char['Right Leg'])
  34. char['Right Leg'].Transparency = 1
  35. rl.LineThickness = 0.05
  36. rl.Adornee = (char['Right Leg'])
  37.  
  38. ll = Instance.new('SelectionBox' ,char['Left Leg'])
  39. char['Left Leg'].Transparency = 1
  40. ll.LineThickness = 0.05
  41. ll.Adornee = (char['Left Leg'])
  42.  
  43. while true do wait(0.1)
  44. H.Color3 = Color3.new(math.random(),math.random(),math.random())
  45. T.Color3 = Color3.new(math.random(),math.random(),math.random())
  46. la.Color3 = Color3.new(math.random(),math.random(),math.random())
  47. ll.Color3 = Color3.new(math.random(),math.random(),math.random())
  48. ra.Color3 = Color3.new(math.random(),math.random(),math.random())
  49. rl.Color3 = Color3.new(math.random(),math.random(),math.random())
  50. end
Advertisement
Add Comment
Please, Sign In to add comment