Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Direnta/2a19e92d4be9d4bac05c21ed7c7b3fdd to your computer and use it in GitHub Desktop.
Save Direnta/2a19e92d4be9d4bac05c21ed7c7b3fdd to your computer and use it in GitHub Desktop.
--[[
Thanks for purcashing this script!
To use this script, open your Synapse folder, and input this into the "autoexec" folder.
That's all! Hope you enjoy this (simple) script!
]]--
---Notifications
local notification1 = Instance.new("Sound", game.Players.LocalPlayer.PlayerGui)
local notification2 = Instance.new("Sound", game.Players.LocalPlayer.PlayerGui)
local notification3 = Instance.new("Sound", game.Players.LocalPlayer.PlayerGui)
---Injected
notification1.SoundId = "rbxassetid://578970639"
notification1:Play()
game.StarterGui:SetCore('SendNotification', {Title='Injected'; Text='Synapse has been injected successfully!', Duration=5;});
wait(1)
---Filtering
if workspace.FilteringEnabled == true then
game.StarterGui:SetCore('SendNotification', {Title='Filtering Enabled'; Text='This game is currently Filtering Enabled.'})
notification2.SoundId = "rbxassetid://578970639"
notification2:Play()
else
notification3.SoundId = "rbxassetid://578970639"
notification3:Play()
game.StarterGui:SetCore('SendNotification', {Title='Filtering Disabled'; Text='This game is currently Filtering Disabled.'})
end
---Notification Destroy
wait(1.5)
notification1:Destroy()
notification2:Destroy()
notification3:Destroy()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment