Advertisement
CharcoalBurnsRBLX

uijhtyb

Mar 27th, 2015
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.88 KB | None | 0 0
  1. hoverbrick = Instance.new("Part",workspace)
  2. target = game.Workspace.CharcoalBurns.Torso
  3. selb = Instance.new("SelectionBox", hoverbrick)
  4. local gui = Instance.new("ScreenGui", game.StarterGui)
  5. local txtlabel = Instance.new("TextLabel", gui)
  6. txtlabel.Text = "Lol hi!"
  7. selb.Adornee = hoverbrick
  8. hoverbrick.Shape = "Ball"
  9. selb.Color = BrickColor.new("Really red")
  10. hoverbrick.FormFactor = "Custom"
  11. hoverbrick.Size = Vector3.new(1, 3, 1)
  12. bodyvel = Instance.new("BodyPosition", hoverbrick)
  13. bodyvel.position = Vector3.new(target.Position.X +3, target.Position.Y + 3, target.Position.Z + 3)
  14. bodyvel.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  15. while true do
  16.     wait(0.1)
  17.     hoverbrick.BrickColor = BrickColor.random()
  18. selb.Color = BrickColor.random()
  19. selb.Transparency = math.random()
  20.     bodyvel.position = Vector3.new(target.Position.X +3, target.Position.Y + 3, target.Position.Z + 3)
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement