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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. --just place em right next to each other lel
  2. local me = game.Players.LocalPlayer
  3. local remote = game.ReplicatedStorage.Remotes.Input
  4. local Merlin1 = {}
  5. local Merlin2 = {}
  6. local Merlin3 = {}
  7.  
  8. for _,v in pairs(game:GetService("Workspace").Unit:GetChildren()) do
  9.    if v.Name == 'Merlin' and v.Owner.Value == me then
  10.        table.insert(Merlin1, v)
  11.    end
  12. end
  13.  
  14. if #Merlin1 == 2 then
  15.    while true do
  16.        remote:FireServer('UseSpecialMove', Merlin1[1])
  17.        wait(30.5)
  18.        remote:FireServer('UseSpecialMove', Merlin1[2])
  19.        wait(30.5)
  20.    end
  21. end