How would I make this work in-game, GetMouse() Method?
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.
002 | local activePlayer = nil |
005 | local currentRay = nil |
007 | local currentCap = nil |
009 | local rayPart = Instance.new( "Part" ) |
011 | rayPart.Transparency = 0 |
012 | rayPart.Anchored = true |
013 | rayPart.CanCollide = false |
014 | rayPart.TopSurface = Enum.SurfaceType.SmoothNoOutlines |
015 | rayPart.BottomSurface = Enum.SurfaceType.SmoothNoOutlines |
016 | rayPart.FrontSurface = Enum.SurfaceType.SmoothNoOutlines |
017 | rayPart.BackSurface = Enum.SurfaceType.SmoothNoOutlines |
018 | rayPart.LeftSurface = Enum.SurfaceType.SmoothNoOutlines |
019 | rayPart.RightSurface = Enum.SurfaceType.SmoothNoOutlines |
020 | rayPart.formFactor = Enum.FormFactor.Custom |
021 | rayPart.BrickColor = BrickColor.new( "Storm blue" ) |
022 | rayPart.Reflectance = 0 |
023 | rayPart.Material = Enum.Material.Metal |
025 | local function Reset() |
029 | if currentCap ~ = nil then |
030 | water.Refilling.Value = false |
032 | if currentRay ~ = nil then |
039 | script.Parent.ClickDetector.MouseClick:Connect( function (player) |
042 | activePlayer = player |
051 | if active and activePlayer ~ = nil then |
052 | local mouse = activePlayer:GetMouse() |
054 | mouse.Button 1 Down:Connect( function () |
058 | if currentRay ~ = nil then |
059 | mouse.TargetFilter = currentRay |
062 | if currentCap = = nil then |
063 | ray = Ray.new(script.Parent.Position, (mouse.Hit.p - script.Parent.Position).unit) |
065 | ray = Ray.new(script.Parent.Position, (currentCap.Position - script.Parent.Position).unit) |
068 | local hit = mouse.Target |
071 | if hit.Name = = "WaterCap" and not hit:FindFirstChild( "Connected" ) then |
073 | local connect = Instance.new( "BoolValue" ) |
074 | connect.Parent = currentCap |
075 | water = currentCap.Parent.Parent:FindFirstChild( "Water" ) |
077 | water.Refilling.Value = true |
082 | local distance = (mouse.Hit.p - script.Parent.Position).magnitude |
084 | if distance > 100 then |
088 | if currentRay = = nil then |
089 | pipe = rayPart:clone() |
094 | if currentCap ~ = nil then |
095 | position = currentCap.Position |
097 | position = mouse.Hit.p |
098 | distance = distance- 1 |
101 | pipe.Size = Vector 3. new( 0.5 , distance, 0.5 ) |
102 | pipe.CFrame = CFrame.new(position, script.Parent.Position) * CFrame.new( 0 , 0 , -distance/ 2 ) * CFrame.Angles(math.rad( 90 ), 0 , 0 ) |
103 | pipe.Parent = script.Parent.Parent |
107 | if currentCap ~ = nil then |
[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]