Advertisement
Guest User

light everyone in the VSB server on fire

a guest
Apr 5th, 2020
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. local function burntween(brick)
  2.     local tweenInf = TweenInfo.new(
  3.         1,
  4.         Enum.EasingStyle.Linear,
  5.         Enum.EasingDirection.Out
  6.     )
  7.     local tween = game.TweenService:Create(brick, tweenInf, {Color = Color3.fromRGB(0, 0, 0)})
  8.     tween:Play()
  9. end
  10. for i, v in pairs(game.Players:GetPlayers()) do
  11.     local char = v.Character
  12.     local fire = Instance.new("Fire", char.HumanoidRootPart)
  13.     fire.Heat = 14
  14.     fire.Size = 10
  15.     for i2, v2 in pairs(char:GetChildren()) do
  16.         if v2:IsA("BasePart") then
  17.             burntween(v2)
  18.         end
  19.     end
  20.     wait(1)
  21.     char.Humanoid.Health = 0
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement