www.roblox-scripter.com

Script – PLS Donate

Thank you for using our website
Your script:

				
					--this btool works in many games with a remote that simply deletes something, try this in build games, car games, and minecraft games
local Tool = Instance.new("Tool",game.Players.LocalPlayer.Backpack)
local Equipped = false

Tool.RequiresHandle = false
Tool.TextureId = 'http://roblox.com/asset/?id=1387605654'
local Field = Instance.new("SelectionBox",game.Workspace)
local Mouse = game.Players.LocalPlayer:GetMouse()
Field.LineThickness = 0.1

Tool.Equipped:connect(function()
   Equipped = true
   Mouse.Icon = 'rbxasset://textures/HammerCursor.png'
   while Equipped == true do
       if Mouse.Target ~= nil then
           Field.Adornee = Mouse.Target
       else
           Field.Adornee = nil
       end
       wait()
   end
end)


Tool.Unequipped:connect(function()
   Equipped = false
   Field.Adornee = nil
   Mouse.Icon = ''
end)

Tool.Activated:connect(function()
   if Mouse.Target ~= nil then
       local ob = Mouse.Target
       for i,v in pairs(game:GetService("ReplicatedStorage"):GetDescendants()) do
           if v:IsA("RemoteEvent") then
       v:FireServer(ob)
           end
   end
   end
end)
				
			

How about trying out new scripts?