Last active
August 29, 2023 19:29
-
-
Save BelkaBoi/34f21aace86ef8db78004de13eb0efa7 to your computer and use it in GitHub Desktop.
Script that will spam custom message with "hold it", "objection", and slam emote (cuz it's the only emote that makes sound). Also it spams random music. (Can crash some players. Execute many times for good effect)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
██████ ███████ ██ ██ ██ █████ ██ ██████ ██ ██ ██ ███████ ██████ ██████ ██ ██████ ████████ ███████ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ █████ ██ █████ ███████ ██ ██ ██ ██ ██ ███████ ██ ██████ ██ ██████ ██ ███████ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██████ ██████ ██ ███████ ██████ ██ ██ ██ ██ ██ ███████ | |
local text = "Your text here" | |
local function musicSpam() | |
local args = { | |
[1] = "Trial" | |
} | |
workspace.Main.Music.Event:FireServer(unpack(args)) | |
wait(0.1) | |
local args = { | |
[1] = "ClassroomTrial" | |
} | |
workspace.Main.Music.Event:FireServer(unpack(args)) | |
wait(0.1) | |
local args = { | |
[1] = "Questioned" | |
} | |
workspace.Main.Music.Event:FireServer(unpack(args)) | |
wait(0.1) | |
local args = { | |
[1] = "Caught" | |
} | |
workspace.Main.Music.Event:FireServer(unpack(args)) | |
wait(0.1) | |
local args = { | |
[1] = "Objection" | |
} | |
workspace.Main.Music.Event:FireServer(unpack(args)) | |
wait(0.1) | |
local args = { | |
[1] = "Cornered" | |
} | |
workspace.Main.Music.Event:FireServer(unpack(args)) | |
wait(0.1) | |
local args = { | |
[1] = "ApolloObjection" | |
} | |
workspace.Main.Music.Event:FireServer(unpack(args)) | |
wait(0.1) | |
local args = { | |
[1] = "ApolloCornered" | |
} | |
workspace.Main.Music.Event:FireServer(unpack(args)) | |
wait(0.1) | |
end | |
while wait() do | |
local args = { | |
[1] = text, | |
[2] = "Judge", | |
[3] = "Slam", | |
[4] = "Order", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Judge", | |
[3] = "Slam", | |
[4] = "Objection", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Judge", | |
[3] = "Slam", | |
[4] = "Holdit", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Witness", | |
[3] = "Slam", | |
[4] = "Order", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Witness", | |
[3] = "Slam", | |
[4] = "Objection", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Witness", | |
[3] = "Slam", | |
[4] = "Holdit", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Prosecution", | |
[3] = "Slam", | |
[4] = "Order", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Prosecution", | |
[3] = "Slam", | |
[4] = "Objection", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Prosecution", | |
[3] = "Slam", | |
[4] = "Holdit", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Defense", | |
[3] = "Slam", | |
[4] = "Order", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Defense", | |
[3] = "Slam", | |
[4] = "Objection", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
local args = { | |
[1] = text, | |
[2] = "Defense", | |
[3] = "Slam", | |
[4] = "Holdit", | |
[5] = false | |
} | |
workspace.Main.General.Speak:FireServer(unpack(args)) | |
musicSpam() | |
wait(0.1) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment