Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

How to make this script which puts a border on the targeted block print no errors?

Asked by 4 years ago

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

01-- Get Player
02local Player = game.Players.LocalPlayer
03 
04-- MainThings
05local TileGrid = workspace.Tiles
06local Mouse = Player:GetMouse()
07 
08-- Border
09local Border = Instance.new("SelectionBox")
10Border.Parent = workspace
11Border.LineThickness = .01
12Border.Color3 = Color3.new(255,255,255)
13 
14-- Services
15local RunService = game:GetService("RunService")
View all 24 lines...

1 answer

Log in to vote
2
Answered by 4 years ago
Edited 4 years ago

Hello.


Problem:

  • You did not check if the target was existent. A target is nil when you're pointing to the sky.

Solution:

  • Add an if statement checking if the mouse target is existent.

Recommendation(s):

  • Use Mouse.Move instead of RunService.Heartbeat to prevent lag.

Fixed Script:

01-- Get Player
02local Player = game.Players.LocalPlayer
03 
04-- MainThings
05local TileGrid = workspace.Tiles
06local Mouse = Player:GetMouse()
07 
08-- Border
09local Border = Instance.new("SelectionBox")
10Border.Parent = workspace
11Border.LineThickness = .01
12Border.Color3 = Color3.new(255,255,255)
13 
14-- Event
15Mouse.Move:Connect(function()
View all 24 lines...
Ad

Answer this question