local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Reach = Instance.new("TextButton") ScreenGui.Parent = game.CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(75, 75, 75) Frame.BorderColor3 = Color3.fromRGB(75, 75, 75) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.0809101239, 0, 0.203790441, 0) Frame.Size = UDim2.new(0, 150, 0, 90) Frame.Active = true Frame.Draggable = true Reach.Name = "Reach" Reach.Parent = Frame Reach.BackgroundColor3 = Color3.fromRGB(71, 71, 71) Reach.BorderSizePixel = 0 Reach.Position = UDim2.new(0, 0, 0.039088048, 0) Reach.Size = UDim2.new(0, 143, 0, 38) Reach.Font = Enum.Font.GothamBlack Reach.Text = "Reach" Reach.TextColor3 = Color3.fromRGB(255, 255, 255) Reach.TextSize = 14.000 Reach.MouseButton1Down:connect(function() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://413861777" sound.Parent = game:GetService("SoundService") sound:Play() wait() game.StarterGui:SetCore("SendNotification", { Title = "Need tool"; -- the title (ofc) Text = "If you dont have weapon then get one and use this command"; -- what the text says (ofc) Duration = 5; -- how long the notification should in secounds }) for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren()) do if v:isA("Tool") then local a = Instance.new("SelectionBox",v.Handle) v.Handle.Massless = true v.Handle.Transparency = 1 a.Adornee = v.Handle v.Handle.Size = Vector3.new(30, 30 , 30) local selectionBox = Instance.new("SelectionBox",v.Handle) selectionBox.Adornee = v.Handle selectionBox.Color3 = Color3.new(0, 0.313725, 0.47451) end end end)