Advertisement
Rscript

New YouTube Simulator

Jul 12th, 2021
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. studio = ""
  2. laptop = ""
  3. for i,k in pairs(game:GetService("Workspace").Studios:GetChildren()) do
  4. if string.match(k.Name, game.Players.LocalPlayer.Name ) then
  5. studio = k
  6. end
  7. end
  8.  
  9. for i,k in pairs(studio.Items:GetChildren()) do
  10. if k:FindFirstChild("ID") and k:FindFirstChild("Keyboard") then
  11. laptop = k
  12. end
  13. end
  14.  
  15. while wait() do
  16. game:GetService("ReplicatedStorage").Edited:FireServer(laptop)
  17. game:GetService("ReplicatedStorage").fileMade:FireServer()
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement