Remote firing more than once?
Asked by
4 years ago Edited 4 years ago
I have a SpiderMan Physics game and when shooting my web onto floating blocks in the sky, it shoots multiple webs if I spam click. The debounce does not seem to work. I am wanting to have it to where you click and then it waits .5 seconds before you can click again
LocalScript
03 | Mouse.Button 1 Down:Connect( function () |
04 | if Clicked = = false and Mouse.Target ~ = nil and Character:FindFirstChild( 'LeftHand' ) then |
05 | local Pos = Mouse.Hit.p |
07 | local Request = 'ShootWeb' |
08 | ShootWeb:FireServer(Request,Pos) |
12 | elseif Clicked = = true then |
13 | local Request = 'RemoveWeb' |
14 | RemoveWeb:FireServer(Request) |
ServerScript
01 | ShootWeb.OnServerEvent:Connect( function (Player,Request,MousePos) |
02 | if Request = = 'ShootWeb' then |
05 | local Part = Instance.new( 'Part' ,workspace.AttatchmentParts) |
06 | Part.Name = Player.Name |
07 | Part.Size = Vector 3. new( 1 , 1 , 1 ) |
10 | Part.CanCollide = false |
11 | Part.CFrame = CFrame.new(MousePos) |
13 | local Att 0 = Instance.new( 'Attachment' ,Player.Character.LeftHand) |
14 | local Att 1 = Instance.new( 'Attachment' ,Part) |
16 | Rope = Instance.new( 'RopeConstraint' ,Player.Character.LeftHand) |
17 | Rope.Color = BrickColor.new( 'Institutional white' ) |
19 | Rope.Length = (Player.Character.LeftHand.Position - Part.Position).magnitude |
20 | Rope.Attachment 0 = Att 0 |
21 | Rope.Attachment 1 = Att 1 |
Help would be greatly appreciated!