Advertisement
Liver_zMods

Survive the giants!

Jan 8th, 2025 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. local workspace = game:GetService("Workspace")
  2.  
  3. local function IsGiant()
  4.     for _, obj in ipairs(workspace:GetChildren()) do
  5.         if obj:IsA("Model") and obj.Name:match("^Giant_%d+$") then
  6.             return obj
  7.         end
  8.     end
  9.     return nil
  10. end
  11.  
  12. local giant = IsGiant()
  13. local args = {
  14.     [1] = {
  15.         [1] = giant.Name,
  16.         [2] = 20,
  17.         [3] = 0
  18.     }
  19. }
  20.  
  21. for i = 1, 2200 do
  22.     workspace.__THINGS.__REMOTES.giant_dealdamage:FireServer(unpack(args))
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement