Answered by
6 years ago Edited 6 years ago
Reminder that this is basic stuff! If you don't want to try this, then go on with theking48989987's answer!
Put a tool inside, and uncheck it's ReqiresHandle
checkbox. It should be somewhere inside StarterPack.
After that's done, add a LocalScript
inside it. There should be some code like this:
1 | local mouse = game.Players.LocalPlayer:GetMouse() |
2 | local player = game.Players.LocalPlayer |
3 | script.Parent.Activated:Connect( function () |
4 | local target = mouse.Target |
6 | print (player.Name .. " targeted " .. target.Name .. "!" ) |
This line of code is simple and basic to go through.
First, Line 1 and 2 declare the local player and it's mouse. (their client)
Beginning of the third line connects an event listener.
The lines of code after that declare a variable, which can be used to know which part the Mouse
is targeting, so it goes through a check, if the mouse's Target
exists. If we didn't add that if condition, we would get an error while printing this through the console output.
This is pretty much most of the basic stuff this sample of code can do. and when you click a part, it will print it to the Output. (can be turned on in the View tab)
There's also dot notation in one line of the code sample. This is an efficient way of getting to print multiple declared strings at one line to the Console.
The console is very useful and powerful when debugging, and is a great need.
If you don't get what you expected, you'll have some errors.