Advertisement
vo11d

Script | Kill Aura

Dec 24th, 2022 (edited)
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.71 KB | None | 0 0
  1. <div align="center">
  2. <p style="text-align: center;"></p><div class="separator" style="clear: both;"><div class="separator" style="clear: both; text-align: center;"><span style="font-size: x-large;"><div class="separator" style="clear: both; text-align: center;"><div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicRvJi9Q58Tp8b0sKdpqk2yLDSVnEZ2H_1umbC9pnL4WVQiUFQss06K33ijliOomLxe8p_zwS2BT36Pe0XWvVtQhFNiMjIPWn8oFHxoTo6SlH9xT6lMJzns2kDMP3RNuKKz-84AVNUdBZK7gMcIZZtubWKXF40Ry4VaCIgSglKAmp-1E6D9kbLpE5ogw/s850/%D8%B3%D9%83%D8%B1%D8%A8%D8%AA%20Dance.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="500" data-original-width="850" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicRvJi9Q58Tp8b0sKdpqk2yLDSVnEZ2H_1umbC9pnL4WVQiUFQss06K33ijliOomLxe8p_zwS2BT36Pe0XWvVtQhFNiMjIPWn8oFHxoTo6SlH9xT6lMJzns2kDMP3RNuKKz-84AVNUdBZK7gMcIZZtubWKXF40Ry4VaCIgSglKAmp-1E6D9kbLpE5ogw/s16000/%D8%B3%D9%83%D8%B1%D8%A8%D8%AA%20Dance.png" /></a></div><br /><div class="separator" style="clear: both; text-align: center;"><br /></div></div><div class="separator" style="clear: both; text-align: center;"><span style="font-size: x-large; text-align: right;">تجربة السكربت :</span></div><div class="separator" style="clear: both; text-align: center;"><span style="font-size: x-large; text-align: right;"><br /></span></div></span></div><div class="separator" style="clear: both; text-align: center;"><div style="clear: both; text-align: center;">[youtube url=https://www.youtube.com/watch?v=qUZ1jcHFDmc]</div><div style="clear: both; text-align: center;"><br /></div></div></div><h3><span style="font-size: large;">السكربت :</span></h3><div>
  3.  
  4. <code><pre>--// Setting \\--
  5. local range = 15
  6.  
  7. --// Variable \\--
  8. local player = game:GetService("Players").LocalPlayer
  9.  
  10. --// Script \\--
  11. game:GetService("RunService").RenderStepped:Connect(function()
  12.     local p = game.Players:GetPlayers()
  13.     for i = 2, #p do local v = p[i].Character
  14.         if v and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 and v:FindFirstChild("HumanoidRootPart") and player:DistanceFromCharacter(v.HumanoidRootPart.Position) <= range then
  15.             local tool = player.Character and player.Character:FindFirstChildOfClass("Tool")
  16.             if tool and tool:FindFirstChild("Handle") then
  17.                 tool:Activate()
  18.                 for i,v in next, v:GetChildren() do
  19.                     if v:IsA("BasePart") then
  20.                         firetouchinterest(tool.Handle,v,0)
  21.                         firetouchinterest(tool.Handle,v,1)
  22.                     end
  23.                 end
  24.             end
  25.         end
  26.     end
  27. end)</code></pre>
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement