How to make this script which puts a border on the targeted block print no errors?
I made a script that will put a border around what your mouse is pointing at
it works but it prints hundreds of errors when I'm pointing at the sky
Here is the script
02 | local Player = game.Players.LocalPlayer |
05 | local TileGrid = workspace.Tiles |
06 | local Mouse = Player:GetMouse() |
09 | local Border = Instance.new( "SelectionBox" ) |
10 | Border.Parent = workspace |
11 | Border.LineThickness = . 01 |
12 | Border.Color 3 = Color 3. new( 255 , 255 , 255 ) |
15 | local RunService = game:GetService( "RunService" ) |
17 | RunService.Heartbeat:Connect( function () |
18 | local Target = Mouse.Target |
19 | if Target.Parent = = TileGrid then |
20 | Border.Adornee = Target |