So, I made an "attack" called force blast for my game, but instead of generating for 1 player, it generates for everyone. How do I fix it? Those are the scripts.
Also, if you can make it so it damages every player which touches it BUT the player which generated it, it would be great.
Video: https://streamable.com/hr84pm
Local Script.
01 | local player = game.Players.LocalPlayer |
02 | local character = script.Parent |
03 | local remoteEvent = game.ReplicatedStorage:WaitForChild( "forcebrr" ) |
04 | local UserInputService = game:GetService( "UserInputService" ) |
05 | local requiredKey = Enum.KeyCode.R |
06 | local rStorage = game.ReplicatedStorage |
07 | local rep = game:GetService( "ReplicatedStorage" ) |
08 |
09 | UserInputService.InputBegan:Connect( function (key, gameProcessed) |
10 | if key.KeyCode = = requiredKey then |
11 | remoteEvent:FireServer() |
12 | end |
13 | end ) |
Server Script.
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
02 | local RemoteEvent = ReplicatedStorage:WaitForChild( "forcebrr" ) |
03 |
04 | game.Players.PlayerAdded:Connect( function (player) |
05 | player.CharacterAdded:Connect( function (character) |
06 | RemoteEvent.OnServerEvent:Connect( function (Player) |
07 | --Part creation script is in the comments, it is right here but it is too long and |
08 | will make the script harder to fix. |
09 | end ) |
10 | end ) |
11 | end ) |
Part Creation Script:
01 | local part = game.ServerStorage.ForceField:Clone() |
02 | part.Parent = workspace |
03 | part.Position = character.Torso.Position |
04 | part.CanCollide = false |
05 | part.Anchored = true |
06 | part.Size = Vector 3. new( 5 , 5 , 5 ) |
07 | part.Transparency = 0.05 |
08 | wait( 0.005 ) |
09 | part.Size = Vector 3. new( 7.5 , 7.5 , 7.5 ) |
10 | part.Transparency = part.Transparency + 0.05 |
11 | wait( 0.005 ) |
12 | part.Size = Vector 3. new( 10 , 10 , 10 ) |
13 | part.Transparency = part.Transparency + 0.05 |
14 | wait( 0.005 ) |
15 | part.Size = Vector 3. new( 12.5 , 12.5 , 12.5 ) |
Howdy! It looks to me that your problem is originating from the server script. I am new to scripting, so this may or may not work for you.
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
02 | local RemoteEvent = ReplicatedStorage:WaitForChild( "forcebrr" ) |
03 |
04 | local function forcebrrRemoteEvent(Player) |
05 | local part = game.ServerStorage.ForceField:Clone() |
06 | part.Parent = workspace |
07 | part.Position = game.Players [ Player.Name ] .Character.Torso.Position |
08 | part.CanCollide = false |
09 | part.Anchored = true |
10 | part.Size = Vector 3. new( 5 , 5 , 5 ) |
11 | part.Transparency = 0.05 |
12 | wait( 0.005 ) |
13 | part.Size = Vector 3. new( 7.5 , 7.5 , 7.5 ) |
14 | part.Transparency = part.Transparency + 0.05 |
15 | wait( 0.005 ) |
And for the local script
01 | local player = game.Players.LocalPlayer |
02 | local character = script.Parent |
03 | local remoteEvent = game.ReplicatedStorage:WaitForChild( "forcebrr" ) |
04 | local UserInputService = game:GetService( "UserInputService" ) |
05 | local requiredKey = Enum.KeyCode.R |
06 | local rStorage = game.ReplicatedStorage |
07 | local rep = game:GetService( "ReplicatedStorage" ) |
08 |
09 | UserInputService.InputBegan:Connect( function (key, gameProcessed) |
10 | if key.KeyCode = = requiredKey then |
11 | remoteEvent:FireServer(player) |
12 | end |
13 | end ) |
I apologize if this didn't work for you, as I didn't have any time to test it.