Posts

Showing posts with the label islands

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

Islands Farm Iron Ore or Stone Script

  Here you go Edit: You will need to go to very close to where there are iron ore are due to the anti-lag of the game if you don't get close some parts from the materials will not show... I recommend you use this with sk8r bytecode conversion dll Game:  https://www.roblox.com/games/4872321990/Islands-OBBY?refPageId=28f927c8-19ce-405e-91bd-048cecdcfa1b game:GetService( "RunService" ).RenderStepped:Connect( function () if game.Workspace.WildernessBlocks:FindFirstChild( "rockIron" ) then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.WildernessBlocks.rockIron.CFrame local ARGSSANDSTONE = { part = Workspace.WildernessBlocks.rockIron[ "1" ]; block = Workspace.WildernessBlocks.rockIron; norm = game.Players.LocalPlayer.Character.HumanoidRootPart.Position; pos = Vector3.new( 0 , 0 , 0 ) } game.ReplicatedStorage.Remotes.Functions[ "CLIENT_BLOCK_HIT_REQUEST" ]:InvokeServer( ARGSSANDSTONE ) end end )