Advertisement
Hydasi

Vibe Airline Seats Script

Dec 29th, 2021
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. local replicatedStorage = game:GetService('ReplicatedStorage');
  2. while true do
  3. for _, v in next, game.Workspace:GetChildren() do
  4. if v.Name ~= 'AirplaneSeat' then continue end;
  5.  
  6. replicatedStorage.Remotes.UpdateTaggedItemState:FireServer(v, 'Recline');
  7. fireclickdetector(v.ClickDetector);
  8. end;
  9. task.wait(0.25);
  10. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement