Advertisement
thatonepuggo

no done (fe)

Aug 12th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. print("Adonis visualizer by oof0m! Enjoy! :D")
  2. print("Adonis visualizer on Server-side!")
  3. local plr = owner
  4. local chr = plr.Character
  5. local p = Instance.new("Part",chr)
  6. local remote = Instance.new("RemoteEvent",game.ReplicatedStorage)
  7. local change = false
  8. local run = game:GetService("RunService")
  9. p.TopSurface = Enum.SurfaceType.Smooth
  10. p.BottomSurface = Enum.SurfaceType.Smooth
  11. local Brick = child
  12. local speed = 5
  13. run.Heartbeat:Connect(function()
  14. --rainbow effect loop
  15. for i = 0,1,0.001*speed do
  16. if change == false then
  17. change = true
  18. Brick.Color = Color3.fromHSV(i,1,1) --creates a color using i
  19. wait()
  20. change = false
  21. end
  22. end
  23.  
  24. end)
  25. p.Anchored = true
  26. p.Material = "Neon"
  27. NLS([[
  28. print("Adonis visualizer on Client-side!")
  29.  
  30.  
  31. ]],script)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement