I am currently working on a feature where you can click on certain objects and interact with them in different ways (this is why I have many variables set up, and are not being used). I have first started making interaction with an enemy possible (through setting a combat variable to true and making selection box to red, though I hope to expand it later). When testing this script, scrolling over an NPC will not allow you to see a selectionbox, and clicking it will do nothing, it also shows no errors. I would GREATLY appreciate it if you could figure out what is wrong with the following code:
01 | -- Setting all variables |
02 | local player = game.Players.LocalPlayer |
03 | local character = player.Character |
04 | if not character or character.Parent = = nil then |
05 | character = player.CharacterAdded:wait() |
06 | end |
07 | local charpos = character.Torso.Position |
08 | local mouse = player:GetMouse() |
09 | local selection = Instance.new( "SelectionBox" , player.PlayerGui) |
10 | selection.Color = BrickColor.new( "Medium stone grey" ) |
11 | local combat = script.combat |
12 | local talking = script.talking |
13 | local reading = script.reading |
14 | local questing = script.questing |
15 |
Thank you for reading :)
I would suggest making your anonymous function a normal one, and connecting it to mouse.Move AND mouse.Idle
That way it will fire when the mouse is not actively being moved, but the screen viewpoint is.(IE Scrolling, turning the camera, walking, anything where you don't/don't have to move the mouse
I find that if I try to use game.Players.LocalPlayer
too quickly it will not work.
I do something like this when I try to get the Local Player
1 | repeat wait() until game:GetService( "Players" ) |
2 | repeat wait() until game:GetService( "Players" ).LocalPlayer |
3 | local plr = game:GetService( "Players" ).LocalPlayer |