Advertisement
ItzPricex

Custom PC Tycoon Script

Dec 24th, 2021
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.08 KB | None | 0 0
  1. while wait(.5) do --seconds in loop, I would recommend 1
  2. ------BUY PARTS --------
  3. local A_1 = "Vented Case" --Plain Case, Vented Case, Core H, See 8, Honeycomb GL,Sector-2 RGB,Lazer-i5
  4. local A_2 = false
  5. local A_3 = "1"
  6. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuyItem
  7. Event:FireServer(A_1, A_2, A_3)
  8. wait()
  9. local A_1 = "P05" --P03, P05, P10, A15, A30 C,Magma O5,UFO-9X
  10. local A_2 = false
  11. local A_3 = "1"
  12. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuyItem
  13. Event:FireServer(A_1, A_2, A_3)
  14. wait()
  15. local A_1 = "Bronze 400w" --Bronze 200w, Brownze 400w, Bronze 1000w, Silver 500w, Silver 1000w,Gold 500w,Fold 1000w
  16. local A_2 = false
  17. local A_3 = "1"
  18. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuyItem
  19. Event:FireServer(A_1, A_2, A_3)
  20. wait()
  21. local A_1 = "3 1500" --3 1200, 3 1500, 4 1200, 4 1500, 5 1200,Cpu Ultra 1,alien works cpu
  22. local A_2 = false
  23. local A_3 = "1"
  24. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuyItem
  25. Event:FireServer(A_1, A_2, A_3)
  26. wait()
  27. local A_1 = "Ram 2Gb" --Ram 1Gb,Ram 2Gb,Ram 4Gb,Ram 8Gb,Ram 16Gb,Ram 32Gb,Ram 64Gb
  28. local A_2 = false
  29. local A_3 = "1"
  30. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuyItem
  31. Event:FireServer(A_1, A_2, A_3)
  32. wait()
  33. local A_1 = "64Gb" --32Gb, 64Gb, 128Gb, 256Gb, 512Gb, 1TB, 2TB
  34. local A_2 = false
  35. local A_3 = "1"
  36. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuyItem
  37. Event:FireServer(A_1, A_2, A_3)
  38.  
  39. -------------BUILD PC-----------
  40.  
  41. local A_1 = "Vented Case"
  42. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.PlaceItem
  43. Event:FireServer(A_1)
  44. wait()
  45. local A_1 = "finish editing component"
  46. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuildPc
  47. Event:FireServer(A_1)
  48.  
  49. wait()
  50. local A_1 = "Motherboard"
  51. local A_2 = game:GetService("Players").LocalPlayer.PcItems.P05
  52. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.PlacePart
  53. Event:FireServer(A_1, A_2)
  54. wait()
  55. local A_1 = "groupPart"
  56. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuildPc
  57. Event:FireServer(A_1)
  58.  
  59. wait()
  60. local A_1 = "PowerSuply"
  61. local A_2 = game:GetService("Players").LocalPlayer.PcItems["Bronze 400w"]
  62. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.PlacePart
  63. Event:FireServer(A_1, A_2)
  64. wait()
  65. local A_1 = "groupPart"
  66. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuildPc
  67. Event:FireServer(A_1)
  68.  
  69. wait()
  70. local A_1 = "Cpu"
  71. local A_2 = game:GetService("Players").LocalPlayer.PcItems["3 1500"]
  72. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.PlacePart
  73. Event:FireServer(A_1, A_2)
  74. wait()
  75. local A_1 = "groupPart"
  76. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuildPc
  77. Event:FireServer(A_1)
  78.  
  79. wait()
  80. local A_1 = "Ram"
  81. local A_2 = game:GetService("Players").LocalPlayer.PcItems["Ram 2Gb"]
  82. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.PlacePart
  83. Event:FireServer(A_1, A_2)
  84. wait()
  85. local A_1 = "groupPart"
  86. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuildPc
  87. Event:FireServer(A_1)
  88.  
  89. wait()
  90. local A_1 = "Memory"
  91. local A_2 = game:GetService("Players").LocalPlayer.PcItems["64Gb"]
  92. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.PlacePart
  93. Event:FireServer(A_1, A_2)
  94. wait()
  95. local A_1 = "groupPart"
  96. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.BuildPc
  97. Event:FireServer(A_1)
  98.  
  99. -------------SAVE & SELL---------
  100.  
  101. local A_1 = "PC" --name of it
  102. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.Save
  103. Event:FireServer(A_1)
  104. wait(.2)
  105. local A_1 = "PC" --name of it, need to be the same as the above to sell
  106. local Event = game:GetService("ReplicatedStorage").Resources.Remotes.RemoteEvents.Sell
  107. Event:FireServer(A_1)
  108. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement