The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Ultimate Driving: Westover script pastebin roblox
By LINK GAME on 2024-09-19 08:00 am | Syntax: LUA | Views: 12



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. workspace.DescendantAdded:Connect(function(it)
  2.     if it.Name == 'Present' then
  3.        game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = it.CFrame
  4.     end
  5. end)
  6.  
  7. for i,it in pairs(workspace:GetDescendants()) do
  8.     if it.Name == 'Present' then
  9.        game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = it.CFrame
  10.     end
  11. end