Facebook
From Paltry Bird, 2 Years ago, written in Lua.
This paste is a reply to Buy Car from TomBuilds - view diff
Embed
Download Paste or View Raw
Hits: 155
  1. local clonedcar1 = game.ServerStorage.Cars.StarterCar:Clone()
  2.  
  3. game.ReplicatedStorage.BuyStarterCar.OnServerEvent:Connect(function()
  4.         clonedcar1:Clone()
  5.         clonedcar1.Parent = game.Workspace
  6. end)
  7.