I'm trying to make it so while the mouse is down my ability starts charging and then when released will activate, my problem is how would I execute this with FilteringEnabled? I've been able to do it without but how would I pass through the charging value to expand the size of a part gradually as the mouse is held?
When you click MouseButton1, fire a Remote Event/Function. You could either pass it with an argument to see if they are holding down or let go (true or false). On InputEnded, fire either the same Remote (with false or whatever you set as parameter) or a different one. Then you can use a NumberValue as an iterator for growing it, then handle it on the server.
https://developer.roblox.com/en-us/api-reference/class/UserInputService
Also, please provide some code or proof that you tried next time.
1 | Tool.Activated:Connect( function ()StartCharging:FireServer() end ) |
2 | Tool.Deactivated:Connect( function ()DoAbility:FireServer() end ) |
So far I've got this
LocalScript
01 | local UserInputService = game:GetService( "UserInputService" ) |
02 |
03 | local Held = false |
04 |
05 | UserInputService.InputBegan:Connect( function (inputObject) |
06 | if inputObject.UserInputType = = Enum.UserInputType.MouseButton 1 then |
07 | Held = true |
08 | game.ReplicatedStorage [ "Magic" ] [ "Charging" ] :FireServer( true ) |
09 | end |
10 | end ) |
11 |
12 | UserInputService.InputEnded:Connect( function (inputObject) |
13 | if inputObject.UserInputType = = Enum.UserInputType.MouseButton 1 then |
14 | Held = false |
15 | game.ReplicatedStorage [ "Magic" ] [ "Charging" ] :FireServer( false ) |
16 | end |
17 | end ) |
ServerScript
1 | game.ReplicatedStorage [ "Magic" ] [ "Charging" ] .OnServerEvent:Connect( function (player, Held) |
2 |
3 | while wait(. 1 ) do |
4 | if Held = = true then |
5 | print ( "held" ) |
6 | end |
7 | end |
8 |
9 | end ) |
My only problem is it keeps firing when I release the key, it doesn't seem to be passing through false but I'm not getting any errors.