
34.4k Views
Ultra instinct
Universal Script ๐Uploaded by 7 months ago
Please login to perform these actions:
Description
-- Ultra instinct -- - Customisable range. - Detects players instantly. - Auto avoid teleporting in parts. - Button to turn off sounds. The thumbnail got cropped sorry about that!
Comments
7

Offline
sutartthebacon 7 months ago
yessir
Offline
Cinoclex 7 months ago
Boutta see if it works for tsb?
Offline
AzScripter 7 months ago - Edited
add this:
-- Sound id
local teleportSoundIDs = {
"rbx*etid://87566211283329", -- 1
"rbx*etid://81857580097150", -- 2
"rbx*etid://129561737395908", -- 3
"rbx*etid://122312400582724", -- 4
"rbx*etid://136080815136211" -- 5
}
-- sound playback order
local soundPlayOrder = {1, 2, 3, 1, 2, 4, 5, 4}
local currentSoundIndex = 0
-- function to play sound when teleporting
local function playTeleportSound()
currentSoundIndex = currentSoundIndex + 1
if currentSoundIndex > #soundPlayOrder then
currentSoundIndex = 1
end
local soundIndex = soundPlayOrder[currentSoundIndex]
local soundId = teleportSoundIDs[soundIndex]
local sound = Instance.new("Sound")
sound.SoundId = soundId
sound.Volume = 0.7
sound.Parent = Workspace
sound.Ended:Connect(function()
sound:Destroy()
end)
sound:Play()
return sound
end
AzScripteradd this:
-- Sound id
local teleportSoundIDs = {
...
Offline
ZERETET 7 months ago
@AzScripter Done also added button to turn it off, made UI bigger and added a minimise button.
Offline
Cinoclex 7 months ago
Zeretet the ui is the size of a quarter of my screen but after u added the minimise button it kind of fixed it but the bigger ui made it worse
Offline
Cinoclex 7 months ago
Also its not draggable
![[๐ RELEASE] Anime Astral Simulator](/images/script/113236157544232-1780333729144.png)
Voxle Hub
