Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local workspace = game:GetService("Workspace")
- local function IsGiant()
- for _, obj in ipairs(workspace:GetChildren()) do
- if obj:IsA("Model") and obj.Name:match("^Giant_%d+$") then
- return obj
- end
- end
- return nil
- end
- local giant = IsGiant()
- local args = {
- [1] = {
- [1] = giant.Name,
- [2] = 20,
- [3] = 0
- }
- }
- for i = 1, 2200 do
- workspace.__THINGS.__REMOTES.giant_dealdamage:FireServer(unpack(args))
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement