Advertisement
Animescapetower

test

Apr 11th, 2018
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1.  
  2. --Bad idea to forget to never ever try to make a visualizer test, this is a test for the size and cframe lol
  3. Player = game.Players.LocalPlayer
  4.  
  5.  
  6.  
  7. --Random stuff
  8. x = 21
  9. z = 12
  10. y = 30
  11. sizex = 0.2* 0.44
  12. sizey = 0.5* 0.43
  13. sizez = 0.1* 0.76
  14. --settings
  15.  
  16. color ={"Cyan"}
  17.  
  18. pickColor = color[math.random(1,#color)]
  19. xyz = 360/x,y,z
  20.  
  21. VisualizerParts = Instance.new("Folder")
  22. VisualizerParts.Name = "VisualParts"
  23. VisualizerParts.Parent = Player.Character
  24.  
  25.  
  26. function Visualizer()
  27. Part = Instance.new("Part")
  28. Part.CFrame = CFrame.fromEulerAnglesXYZ(x,z,y)--Cframe Player
  29. Part.Size = Vector3.new(sizex,sizey,sizez)
  30. Part.BrickColor = BrickColor.new(pickColor)
  31. Part.Anchored = true
  32. Part.Material = "Neon"
  33. Part.Parent = VisualizerParts
  34.  
  35. for visadder = 1,xyz do
  36. Parts = Part
  37. Parts.CFrame = CFrame.new(Player.Character.Torso.Position)
  38.  
  39.  
  40. end
  41.  
  42. end
  43.  
  44.  
  45.  
  46.  
  47.  
  48. --FunctionsAndStuff
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement