Islands Kill Aura Script
It allows you to kill all creatures like slimes and scorpion easily if you are close to them. It allows you to kill any creature in the game islands Just equip a sword and get near to the slime https://www.roblox.com/games/4872321990/Islands-OBBY?refPageId=28f927c8-19ce-405e-91bd-048cecdcfa1b enabled = true game:GetService( "Players" ).LocalPlayer:GetMouse().KeyDown:Connect( function (key) if key == "g" then if enabled == true then enabled = false else enabled = true end end end ) while wait() do if enabled == true then for i, entity in pairs (game:GetService( "Workspace" ).Entities:GetChildren()) do game:GetService( "ReplicatedStorage" ).Remotes.Functions:FindFirstChild( "CLIENT_SWING_SWORD" ):InvokeServer({[ "crit" ] = true ,[ "hitUnit" ] = entity}) end end end