ADVERTISEMENTREMOVE ADS

SLAP EVERYONE | OP SCRIPT XD

Universal script
4 months ago
Script preview thumbnail
Script Preview

Description

i made this script for fun basically it slaps everyone so fast

you need to have the slapper out so it works and also the press P to enable/disable it

anyways enjoy :D

Features:

  • SLAP ALL
ADVERTISEMENTREMOVE ADS
39 Lines • 1.07 KiB
Verified
Raw
local Players = game:GetService("Players")
local UserInputService = game:GetService("UserInputService")
local LocalPlayer = Players.LocalPlayer
local toggled = false
local TOGGLE_KEY = Enum.KeyCode.P
local function getSlapperEvent()
local character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
return character:WaitForChild("Slapper"):WaitForChild("Event")
end
UserInputService.InputBegan:Connect(function(input, gameProcessed)
if gameProcessed then return end
if input.KeyCode == TOGGLE_KEY then
toggled = not toggled
if toggled then
print("Auto slapper enabled")
while toggled do
for _, player in ipairs(Players:GetPlayers()) do
if player ~= LocalPlayer and player.Character then
local args = {
"slash",
player.Character,
Vector3.new(-2.4950966835021973, 0.00048534199595451355, 0.1565006524324417)
}
pcall(function()
getSlapperEvent():FireServer(unpack(args))
end)
end
end
task.wait(0.1)
end
else
print("Auto slapper disabled")
end
end
end)
ADVERTISEMENTREMOVE ADS

Comments

4 comments
to add a comment
Gr

not working

0
0
Au

@relaxandenjoyshop you have to equip the slap tool and also P is to enable/disable

0
0
El

Can it be used on Slap towers?

0
0
Le

What games are support

0
0
ADVERTISEMENTREMOVE ADS