Advertisement
AchilleTheScRiPters

Create Parts

Aug 2nd, 2022
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.05 KB | None | 0 0
  1.  
  2. wait(2)
  3. local player = game.Workspace["your username"]
  4. local playerWP = player.HumanoidRootPart.Position
  5.  
  6. DWC = Instance.new("Part")
  7. DWC.Parent = workspace
  8. DWC.Color = Color3.fromRGB(60, 145, 255)
  9. DWC.Size = Vector3.new(1,1,1)
  10. DWC.Name = "DWC"
  11.  
  12. DWF = Instance.new("Part")
  13. DWF.Parent = workspace
  14. DWF.Color = Color3.fromRGB(255, 25, 17)
  15. DWF.Size = Vector3.new(1,1,1)
  16. DWF.Name = "DWF"
  17.  
  18. DWV = Instance.new("Part")
  19. DWV.Parent = workspace
  20. DWV.Color = Color3.fromRGB(234, 153, 13)
  21. DWV.Size = Vector3.new(1,1,1)
  22. DWV.Name = "DWV"
  23.  
  24. DWB = Instance.new("Part")
  25. DWB.Parent = workspace
  26. DWB.Color = Color3.fromRGB(208, 10, 234)
  27. DWB.Size = Vector3.new(1,1,1)
  28. DWB.Name = "DWB"
  29.  
  30. DWR = Instance.new("Part")
  31. DWR.Parent = workspace
  32. DWR.Color = Color3.fromRGB(132, 234, 14)
  33. DWR.Size = Vector3.new(1,1,1)
  34. DWR.Name = "DWR"
  35.  
  36.  
  37. while true do
  38.     wait(0.355)
  39.     local playerWPW = player.HumanoidRootPart.Position
  40.     wait(0.100)
  41.     DWC.Position = playerWPW
  42.     DWF.Position = playerWPW
  43.     DWV.Position = playerWPW
  44.     DWB.Position = playerWPW
  45.     DWR.Position = playerWPW
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement