My delete block bindable event is not working when i fire it?
I made a script that will destroy blocks when clicked on them
I made it in a local script and it only affects the client
then I made a bindable event to make it affect the server
Here is the LocalScript
02 | local Player = game.Players.LocalPlayer |
05 | local PlayerBuild = workspace.Build 1. Build |
06 | local TileGrid = workspace.Build 1. Tiles |
07 | local Mouse = Player:GetMouse() |
11 | local Border = Instance.new( "SelectionBox" ) |
12 | Border.Parent = workspace |
13 | Border.LineThickness = . 01 |
14 | Border.Color 3 = Color 3. new( 255 , 255 , 255 ) |
17 | local RunService = game:GetService( "RunService" ) |
20 | local BlockSize = Vector 3. new( 3 , 3 , 3 ) |
21 | local BlockMaterial = Enum.Material.Wood |
22 | local BlockColor = BrickColor.White() |
25 | local PlaceBlock = game.ReplicatedStorage.PlaceBlock |
26 | local RemoveBlock = game.ReplicatedStorage.RemoveBlock |
29 | RunService.Heartbeat:Connect( function () |
30 | local Target = Mouse.Target |
32 | if Target.Parent = = TileGrid or PlayerBuild then |
33 | Border.Adornee = Target |
34 | TargetedBlock = Target |
43 | Mouse.Button 1 Down:Connect( function () |
47 | if Mouse.TargetSurface = = Enum.NormalId.Top then |
48 | PlaceBlock:FireServer(BlockMaterial, BlockColor, (TargetedBlock.Position + Vector 3. new( 0 , 3 , 0 ))) |
49 | print ( "Attempt to place block" ) |
52 | if Mouse.TargetSurface = = Enum.NormalId.Bottom then |
53 | PlaceBlock:FireServer(BlockMaterial, BlockColor, (TargetedBlock.Position + Vector 3. new( 0 ,- 3 , 0 ))) |
54 | print ( "Attempt to place block" ) |
57 | if Mouse.TargetSurface = = Enum.NormalId.Left then |
58 | PlaceBlock:FireServer(BlockMaterial, BlockColor, (TargetedBlock.Position + Vector 3. new(- 3 , 0 , 0 ))) |
59 | print ( "Attempt to place block" ) |
62 | if Mouse.TargetSurface = = Enum.NormalId.Right then |
63 | PlaceBlock:FireServer(BlockMaterial, BlockColor, (TargetedBlock.Position + Vector 3. new( 3 , 0 , 0 ))) |
64 | print ( "Attempt to place block" ) |
67 | if Mouse.TargetSurface = = Enum.NormalId.Front then |
68 | PlaceBlock:FireServer(BlockMaterial, BlockColor, (TargetedBlock.Position + Vector 3. new( 0 , 0 ,- 3 ))) |
69 | print ( "Attempt to place block" ) |
72 | if Mouse.TargetSurface = = Enum.NormalId.Back then |
73 | PlaceBlock:FireServer(BlockMaterial, BlockColor, (TargetedBlock.Position + Vector 3. new( 0 , 3 , 3 ))) |
74 | print ( "Attempt to place block" ) |
80 | Mouse.Button 2 Down:Connect( function () |
81 | if TargetedBlock.Parent = = PlayerBuild then |
82 | print ( "Attempt to remove block" ) |
83 | RemoveBlock:FireServer(TargetedBlock) |
The RemoveBlock part is in Line 80
Here is that part
2 | Mouse.Button 2 Down:Connect( function () |
3 | if TargetedBlock.Parent = = PlayerBuild then |
4 | print ( "Attempt to remove block" ) |
5 | RemoveBlock:FireServer(TargetedBlock) |
And here is the Event script
01 | local Events = game.ReplicatedStorage |
04 | Events.PlaceBlock.OnServerEvent:Connect( function (player, Mat, Color, Position) |
05 | print ( "Block Is Placed!" ) |
06 | local NewBlock = Instance.new( "Part" ) |
07 | NewBlock.BrickColor = Color |
08 | NewBlock.Material = Mat |
09 | NewBlock.Size = Vector 3. new( 3 , 3 , 3 ) |
10 | NewBlock.Position = Position |
11 | NewBlock.Parent = workspace.Build 1. Build |
12 | NewBlock.Anchored = true |
13 | NewBlock.Name = "Block" |
17 | Events.RemoveBlock.OnServerEvent:Connect( function (Block) |
18 | print ( "Block is removed" ) |
When I test it deletes the character for some reason, please help to fix this