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

My delete block bindable event is not working when i fire it?

Asked by 4 years ago

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

01-- Get Player
02local Player = game.Players.LocalPlayer
03 
04-- MainThings
05local PlayerBuild = workspace.Build1.Build
06local TileGrid = workspace.Build1.Tiles
07local Mouse = Player:GetMouse()
08local TargetedBlock
09 
10-- Border
11local Border = Instance.new("SelectionBox")
12Border.Parent = workspace
13Border.LineThickness = .01
14Border.Color3 = Color3.new(255,255,255)
15 
View all 85 lines...

The RemoveBlock part is in Line 80 Here is that part

1-- Remove Block
2Mouse.Button2Down:Connect(function()
3    if TargetedBlock.Parent == PlayerBuild then
4        print("Attempt to remove block")
5        RemoveBlock:FireServer(TargetedBlock)
6    end
7end)

And here is the Event script

01local Events = game.ReplicatedStorage
02 
03-- Place Block
04Events.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 = Vector3.new(3,3,3)
10    NewBlock.Position = Position
11    NewBlock.Parent = workspace.Build1.Build
12    NewBlock.Anchored = true
13    NewBlock.Name = "Block"
14end)
15 
16-- Remove Block
17Events.RemoveBlock.OnServerEvent:Connect(function(Block)
18    print("Block is removed")
19    Block:Destroy()
20end)

When I test it deletes the character for some reason, please help to fix this

0
You can't use a BindableEvent for this. What you want is a RemoteEvent. https://developer.roblox.com/en-us/articles/Remote-Functions-and-Events AntiWorldliness 868 — 4y

1 answer

Log in to vote
1
Answered by 4 years ago

Debugged this script with Nathan on the SH community chat. Posting the solution for those who come across this and may need it.

1-- Remove Block
2Events.RemoveBlock.OnServerEvent:Connect(function(Block) -- the first function parameter of OnServerEvent is the player. So defining just one parameter would define the player only. In this case block refers to the player, which is not what we want.
3    print("Block is removed")
4    Block:Destroy()
5end)
1-- Remove Block
2Events.RemoveBlock.OnServerEvent:Connect(function(plr, Block)-- adding plr, Block defines a second parameter which should be the variable parameter from the FireServer in the local script
3    print("Block is removed")
4    Block:Destroy()
5end)
Ad

Answer this question