IMAKESCRIPTSATSCHOOL

INFECT PLAYER // HIGH FEVER

Jan 26th, 2022 (edited)
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.49 KB | None | 0 0
  1. local PlayerName = "PLAYER NAME HERE"
  2.  
  3.  
  4. --INFECT PLAYER // HIGH FEVER
  5.  
  6. wait(2)
  7.  
  8. --The following was scripted by inrfmaslgrn_ir
  9. local players = game:GetService("Players")
  10. local plr = players:FindFirstChild(PlayerName)
  11. local char = plr.Character
  12. local rigtype = char.Humanoid.RigType
  13. function fpp(part)
  14.     local fire = Instance.new("Fire")
  15.     fire.Parent = char:FindFirstChild(part)
  16.     fire.Size = 10
  17.     fire.Enabled = true
  18.     fire.Heat = 20
  19.     fire.Color = Color3.fromRGB(236, 139, 70)
  20. end
  21. --r6
  22. if rigtype == Enum.HumanoidRigType.R6 then
  23.     fpp("Head")
  24.     fpp("Torso")
  25.     fpp("LeftArm")
  26.     fpp("RightArm")
  27.     fpp("LeftLeg")
  28.     fpp("RightLeg")
  29.     char.Head.BrickColor = BrickColor.Red()
  30. end
  31. if rigtype == Enum.HumanoidRigType.R15 then
  32.     fpp("Head")
  33.     fpp("UpperTorso")
  34.     fpp("LowerTorso")
  35.     fpp("RightUpperArm")
  36.     fpp("RightLowerArm")
  37.     fpp("RightHand")
  38.     fpp("LeftUpperArm")
  39.     fpp("LeftLowerArm")
  40.     fpp("LeftHand")
  41.     fpp("RightUpperLeg")
  42.     fpp("RightLowerLeg")
  43.     fpp("RightFoot")
  44.     fpp("LeftUpperLeg")
  45.     fpp("LeftLowerLeg")
  46.     fpp("LeftFoot")
  47.     char.Head.BrickColor = BrickColor.Red()
  48. end
  49. while true do
  50.     local sweat = Instance.new("Part",workspace)
  51.     sweat.Material = "Granite"
  52.     sweat.Color = Color3.fromRGB(48, 210, 255)
  53.     sweat.Size = Vector3.new(0.15,0.15,0.15)
  54.     sweat.Position = char.Head.Position + Vector3.new(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  55.     sweat.CanCollide = true
  56.     sweat.Anchored = false
  57.     sweat.Shape = "Ball"
  58.     char.Humanoid.Health = char.Humanoid.Health - 0.5
  59.     wait(0.05)
  60. end
Add Comment
Please, Sign In to add comment