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

How would I make this work in-game, GetMouse() Method?

Asked by 7 years ago

How would I get this to work in game since a server script can only access the > GetMouse() < method in studio.

This is basically for a gas tank so when you press on a block you get a 'pipe' that follows your mouse and then when you hover over a 'FuelCap' on a vehicle it refuels it.

Help would be nice, thanks.

001local active = false
002local activePlayer = nil
003local mouse = nil
004 
005local currentRay = nil
006 
007local currentCap = nil
008 
009local rayPart = Instance.new("Part")
010rayPart.Name = "Pipe"
011rayPart.Transparency = 0
012rayPart.Anchored = true
013rayPart.CanCollide = false
014rayPart.TopSurface = Enum.SurfaceType.SmoothNoOutlines
015rayPart.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
View all 113 lines...

[If you would have to rewrite it then tell me what I need to change/do so I can do it myself. Don't want to be making you do it for me]

0
You would use a Remote Event. You would detect, on a local script, when the player clicks. Then, you would use a remote event to tell the server that. http://wiki.roblox.com/index.php?title=Remote_Events_and_Functions UgOsMiLy 1074 — 7y

Answer this question