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

Getting user input without a tool?

Asked by
novipak 70
10 years ago

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
02local player = game.Players.LocalPlayer
03local character = player.Character
04if not character or character.Parent == nil then
05    character = player.CharacterAdded:wait()
06end
07local charpos = character.Torso.Position
08local mouse = player:GetMouse()
09local selection = Instance.new("SelectionBox", player.PlayerGui)
10selection.Color = BrickColor.new("Medium stone grey")
11local combat = script.combat
12local talking = script.talking
13local reading = script.reading
14local questing = script.questing
15 
View all 43 lines...

Thank you for reading :)

1
Line 28, you misspelled Adornee and spelled "Ardornee". Also, on line 25 you assumed the target's parent is a player and it has a Torso. I would recommend checking that first. Another tip is for line 34 where you check the magnitude from the character's position and the target's position. That is a rather inaccurate method, I highly recommend using DistanceFromCharacter instead. Aethex 256 — 10y
0
Thanks for the corrections, however, it still doesn't seem to work, and no errors are occurring. Also, I put the line of code that declares targetpos in a place where it is guaranteed to have a torso. novipak 70 — 10y
0
Line 37 is also spelled as "Ardornee" when it should be Adornee. Aethex 256 — 10y
0
It might also help to find out what is working and what is not by printing to the output. You can check to make sure the function is being called correctly, and each if statement is correct or not. Aethex 256 — 10y
View all comments (2 more)
0
I might also add that on line 18, you check the mouse's target object; however, it is possible for the target to be nil, so you should check for that in the case the mouse is not hovering over any object. Aethex 256 — 10y
0
You just assume 'target.Parent.enemy' exists even when it may not. Perci1 4988 — 10y

2 answers

Log in to vote
0
Answered by
iaz3 190
10 years ago

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

Ad
Log in to vote
-1
Answered by
SirGory 15
10 years ago

I find that if I try to use game.Players.LocalPlayertoo quickly it will not work.

I do something like this when I try to get the Local Player

1repeat wait() until game:GetService("Players")
2repeat wait() until game:GetService("Players").LocalPlayer
3local plr = game:GetService("Players").LocalPlayer

Answer this question