ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script ๐Ÿ“Œ
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!

View Raw
Edited By: ZERETET Download


Comments
7
User profile picture
sutartthebacon 7 months ago
yessir
User profile picture
Cinoclex 7 months ago
Boutta see if it works for tsb?
User profile picture
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
AzScripter's profile pictureAzScripteradd this: -- Sound id local teleportSoundIDs = { ...
User profile picture
ZERETET 7 months ago
@AzScripter Done also added button to turn it off, made UI bigger and added a minimise button.
User profile picture
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
User profile picture
Cinoclex 7 months ago
Also its not draggable
Cinoclex's profile pictureCinoclexAlso its not draggable
User profile picture
ZERETET 7 months ago
@Cinoclex I know and I'm not gonna fix it
Please Login to add a comment.