Advertisement
so50que

Saitama to Black

Dec 27th, 2024 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.40 KB | None | 0 0
  1. -- base tool name
  2.  
  3. local player = game.Players.LocalPlayer
  4. local playerGui = player.PlayerGui
  5.  
  6. -- base move 1
  7. local hotbar = playerGui:FindFirstChild("Hotbar")
  8. local backpack = hotbar:FindFirstChild("Backpack")
  9. local hotbarFrame = backpack:FindFirstChild("Hotbar")
  10. local baseButton1 = hotbarFrame:FindFirstChild("1").Base
  11. local ToolName1 = baseButton1.ToolName
  12. ToolName1.Text = "Strong Punch" -- move 1 name
  13.  
  14. -- base move 2
  15. local baseButton2 = hotbarFrame:FindFirstChild("2").Base
  16. local ToolName2 = baseButton2.ToolName
  17. ToolName2.Text = "?" -- move 2 name
  18.  
  19. -- base move 3
  20. local baseButton3 = hotbarFrame:FindFirstChild("3").Base
  21. local ToolName3 = baseButton3.ToolName
  22. ToolName3.Text = "Tentacle Shove" -- move 3 name
  23.  
  24. -- base move 4
  25. local baseButton4 = hotbarFrame:FindFirstChild("4").Base
  26. local ToolName4 = baseButton4.ToolName
  27. ToolName4.Text = "Uppercut" -- move 4 name
  28.  
  29. -- ultimate name
  30. local Players = game:GetService("Players")
  31. local player = Players.LocalPlayer
  32. local playerGui = player:WaitForChild("PlayerGui")
  33.  
  34. local function findGuiAndSetText()
  35. local screenGui = playerGui:FindFirstChild("ScreenGui")
  36. if screenGui then
  37. local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
  38. if magicHealthFrame then
  39. local textLabel = magicHealthFrame:FindFirstChild("TextLabel")
  40. if textLabel then
  41. textLabel.Text = "『POWER UP』" -- ult name
  42. end
  43. end
  44. end
  45. end
  46.  
  47. findGuiAndSetText()
  48.  
  49. --[[MOVE 1 ANIM]]
  50.  
  51. local player = game.Players.LocalPlayer
  52. local character = player.Character or player.CharacterAdded:Wait()
  53. local humanoid = character:WaitForChild("Humanoid")
  54. local animationId = 10468665991
  55.  
  56. -- Animation logic
  57. local function onAnimationPlayed(animationTrack)
  58. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  59. -- Stop all playing animations
  60. for _, animTrack in pairs(humanoid:GetPlayingAnimationTracks()) do
  61. animTrack:Stop()
  62. end
  63.  
  64. -- Play new animation
  65. local newAnim = Instance.new("Animation")
  66. newAnim.AnimationId = "rbxassetid://128022763591042"
  67. local loadedAnim = humanoid:LoadAnimation(newAnim)
  68.  
  69. local startTime = 0
  70. loadedAnim:Play()
  71. loadedAnim:AdjustSpeed(1.3)
  72. loadedAnim.TimePosition = startTime
  73. loadedAnim:AdjustSpeed(1.3)
  74.  
  75. -- Add your sound and particle effects below this line
  76.  
  77. -- Create a new sound object
  78. local sound = Instance.new("Sound")
  79.  
  80. -- Set the Sound ID (example Sound ID from Roblox library)
  81. sound.SoundId = "rbxassetid://3755636438" -- Replace with your Sound ID
  82.  
  83. -- Set other properties for the sound
  84. sound.Volume = 1
  85. sound.Looped = false -- Set to true if you want the sound to loop
  86. sound.PlayOnRemove = false
  87. -- Set the playback speed (change speed here)
  88. local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  89. sound.PlaybackSpeed = playbackSpeed
  90.  
  91. -- Parent the sound to the player's PlayerGui so it plays locally
  92. sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  93. -- Play the sound
  94. wait(0.6)
  95. sound:Play()
  96. local Test = game:GetService("ReplicatedStorage").Resources.IcePath.Dash["2"] local test = Test:Clone()
  97. test.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  98.  
  99. for _, child in ipairs(test:GetChildren()) do
  100. if child:IsA("ParticleEmitter") then
  101.  
  102. child.Color = ColorSequence.new(Color3.new(255, 150, 150))
  103. child:Emit(1)
  104. child.Enabled = true
  105. wait(0.2)
  106. test:Destroy()
  107. end
  108. end
  109.  
  110. -- Optionally, destroy the sound after it finishes playing
  111. sound.Ended:Connect(function()
  112. sound:Destroy()
  113. end)
  114. end
  115. end
  116.  
  117. -- Connect the function to humanoid's animation played event
  118. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  119.  
  120. --[[END OF MOVE 1 ANIM]]
  121.  
  122. -- move 2
  123. local player = game.Players.LocalPlayer
  124. local character = player.Character or player.CharacterAdded:Wait()
  125. local humanoid = character:WaitForChild("Humanoid")
  126. local animationId = 10466974800
  127.  
  128. -- Animation logic
  129. local function onAnimationPlayed(animationTrack)
  130. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  131. -- Stop all playing animations
  132. for _, animTrack in pairs(humanoid:GetPlayingAnimationTracks()) do
  133. animTrack:Stop()
  134. end
  135. -- Play new animation
  136. local newAnim = Instance.new("Animation")
  137. newAnim.AnimationId = "rbxassetid://12273188754"
  138. local loadedAnim = humanoid:LoadAnimation(newAnim)
  139.  
  140. local startTime = 0
  141. loadedAnim:Play()
  142. loadedAnim:AdjustSpeed(1.2)
  143. loadedAnim.TimePosition = startTime
  144. loadedAnim:AdjustSpeed(1.2)
  145.  
  146. local sound = Instance.new("Sound")
  147. sound.SoundId = "rbxassetid://17799049330" -- Replace with your Sound ID
  148. -- Set other properties for the sound
  149. sound.Volume = 1
  150. sound.Looped = false -- Set to true if you want the sound to loop
  151. sound.PlayOnRemove = false
  152.  
  153. local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  154. sound.PlaybackSpeed = playbackSpeed
  155. sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  156. sound:Play()
  157. wait(1.5)
  158. sound:Destroy()
  159. end
  160. end
  161.  
  162. -- Connect the function to humanoid's animation played event
  163. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  164.  
  165. -- end of move 2
  166.  
  167. -- move 3
  168. local player = game.Players.LocalPlayer
  169. local character = player.Character or player.CharacterAdded:Wait()
  170. local humanoid = character:WaitForChild("Humanoid")
  171. local animationId = 10471336737
  172.  
  173. -- Animation logic
  174. local function onAnimationPlayed(animationTrack)
  175. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  176. -- Stop all playing animations
  177. for _, animTrack in pairs(humanoid:GetPlayingAnimationTracks()) do
  178. animTrack:Stop()
  179. end
  180.  
  181. -- Play new animation
  182. local newAnim = Instance.new("Animation")
  183. newAnim.AnimationId = "rbxassetid://12296882427"
  184. local loadedAnim = humanoid:LoadAnimation(newAnim)
  185.  
  186. local startTime = 0
  187. loadedAnim:Play()
  188. loadedAnim:AdjustSpeed(1)
  189. loadedAnim.TimePosition = startTime
  190. loadedAnim:AdjustSpeed(1)
  191.  
  192. local rightArm = character:FindFirstChild("Right Arm")
  193. local A0 = rightArm:FindFirstChild("RightGripAttachment")
  194. if rightArm then
  195. local sfx = Instance.new("Part")
  196. sfx.Size = Vector3.new(1.3, 4, 1.3) -- size
  197. sfx.BrickColor = BrickColor.new("Black")
  198. sfx.CanCollide = false
  199. sfx.Anchored = false
  200. sfx.Parent = character
  201.  
  202. local weld = Instance.new("Weld")
  203. weld.Part0 = sfx
  204. weld.Part1 = rightArm
  205. weld.C0 = CFrame.new(A0.WorldSecondaryAxis)
  206. weld.Parent = sfx
  207. wait(0.5)
  208. sfx:Destroy()
  209. end
  210. end
  211. end
  212.  
  213. -- Connect the function to humanoid's animation played event
  214. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  215.  
  216. -- end of move 3
  217.  
  218. -- move 4
  219.  
  220. local player = game.Players.LocalPlayer
  221. local character = player.Character or player.CharacterAdded:Wait()
  222. local humanoid = character:WaitForChild("Humanoid")
  223. local animationId = 12510170988
  224.  
  225. -- Animation logic
  226. local function onAnimationPlayed(animationTrack)
  227. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  228. -- Stop all playing animations
  229. for _, animTrack in pairs(humanoid:GetPlayingAnimationTracks()) do
  230. animTrack:Stop()
  231. end
  232. local player = game.Players.LocalPlayer
  233. local character = player.Character or player.CharacterAdded:Wait()
  234. local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  235.  
  236. local function onBodyVelocityAdded(bodyVelocity)
  237. if bodyVelocity:IsA("BodyVelocity") then
  238. bodyVelocity.Velocity = Vector3.new(bodyVelocity.Velocity.X, 0, bodyVelocity.Velocity.Z)
  239. end
  240. end
  241.  
  242. character.DescendantAdded:Connect(onBodyVelocityAdded)
  243.  
  244. for _, descendant in pairs(character:GetDescendants()) do
  245. onBodyVelocityAdded(descendant)
  246. end
  247.  
  248. player.CharacterAdded:Connect(function(newCharacter)
  249. character = newCharacter
  250. humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  251. character.DescendantAdded:Connect(onBodyVelocityAdded)
  252.  
  253. for _, descendant in pairs(character:GetDescendants()) do
  254. onBodyVelocityAdded(descendant)
  255. end
  256. end)
  257. -- Play new animation
  258. local newAnim = Instance.new("Animation")
  259. newAnim.AnimationId = "rbxassetid://14705929107"
  260. local loadedAnim = humanoid:LoadAnimation(newAnim)
  261.  
  262. local startTime = 1.5
  263. loadedAnim:Play()
  264. loadedAnim:AdjustSpeed(1)
  265. loadedAnim.TimePosition = startTime
  266. loadedAnim:AdjustSpeed(1)
  267.  
  268. local sound = Instance.new("Sound")
  269. sound.SoundId = "rbxassetid://541909913" -- Replace with your Sound ID
  270. -- Set other properties for the sound
  271. sound.Volume = 2
  272. sound.Looped = false -- Set to true if you want the sound to loop
  273. sound.PlayOnRemove = false
  274.  
  275. local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  276. sound.PlaybackSpeed = playbackSpeed
  277. sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  278. sound.Ended:Connect(function()
  279. sound:Destroy()
  280. end)
  281.  
  282. local rightArm = character:FindFirstChild("Right Arm")
  283. local A0 = rightArm:FindFirstChild("RightGripAttachment")
  284. if rightArm then
  285. local sfx = Instance.new("Part")
  286. sfx.Size = Vector3.new(2, 5, 2) -- size
  287. sfx.BrickColor = BrickColor.new("Black")
  288. sfx.CanCollide = false
  289. sfx.Anchored = false
  290. sfx.Parent = character
  291.  
  292. local weld = Instance.new("Weld")
  293. weld.Part0 = sfx
  294. weld.Part1 = rightArm
  295. weld.C0 = CFrame.new(A0.WorldSecondaryAxis)
  296. weld.Parent = sfx
  297. wait(0.6)
  298. sound:Play()
  299. wait(0.5)
  300. sfx:Destroy()
  301. end
  302. end
  303. end
  304.  
  305. -- Connect the function to humanoid's animation played event
  306. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  307.  
  308. -- end of move 4
  309.  
  310. -- Wall Combo
  311. local wallComboAnimationId = 15955393872 -- The animation to track
  312. local tweenService = game:GetService("TweenService") -- Ensure TweenService is defined
  313.  
  314. -- Function to handle Wall Combo animation
  315. local function onWallComboAnimationPlayed(animationTrack)
  316. if animationTrack.Animation.AnimationId == "rbxassetid://" .. wallComboAnimationId then
  317. local p = game.Players.LocalPlayer
  318. local Humanoid = p.Character:WaitForChild("Humanoid")
  319.  
  320. -- Stop all currently playing animations
  321. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  322. animTrack:Stop()
  323. end
  324.  
  325. -- Play the specific animation
  326. local AnimAnim = Instance.new("Animation")
  327. AnimAnim.AnimationId = "rbxassetid://15943915877" -- The specific wall combo animation
  328. local Anim = Humanoid:LoadAnimation(AnimAnim)
  329.  
  330. local startTime = 0.05 -- Speed for the specific animation
  331. Anim:Play()
  332. Anim:AdjustSpeed(0) -- Stops animation initially
  333. Anim.TimePosition = startTime
  334. Anim:AdjustSpeed(1) -- Adjust speed later
  335. end
  336. end
  337.  
  338. -- End of Wall Combo
  339.  
  340. -- ult anim
  341. local animationId = 12447707844 -- the animation ID that triggers the aura
  342. local player = game.Players.LocalPlayer
  343. local character = player.Character or player.CharacterAdded:Wait()
  344. local humanoid = character:WaitForChild("Humanoid")
  345.  
  346. -- Triggered when the animation is played
  347. local function onAnimationPlayed(animationTrack)
  348. if animationTrack.Animation.AnimationId == "rbxassetid://" .. animationId then
  349.  
  350. -- Stop all currently playing animations
  351. local p = game.Players.LocalPlayer
  352. local Humanoid = p.Character:WaitForChild("Humanoid")
  353.  
  354. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  355. animTrack:Stop()
  356. end
  357.  
  358. -- Load and play the specific ultimate animation
  359. local AnimAnim = Instance.new("Animation")
  360. AnimAnim.AnimationId = "rbxassetid://17464923657" -- the specific animation
  361.  
  362. local Anim = Humanoid:LoadAnimation(AnimAnim)
  363.  
  364. local startTime = 0 -- the specific start time for the animation
  365. Anim:Play()
  366. Anim:AdjustSpeed(1) -- Set speed to 0 initially
  367. Anim.TimePosition = startTime
  368. Anim:AdjustSpeed(1)-- Restore speed after starting the animation
  369. wait(3)
  370. Anim:Stop()
  371. end
  372. end
  373.  
  374. -- Connect to the AnimationPlayed event
  375. humanoid.AnimationPlayed:Connect(onAnimationPlayed)
  376.  
  377. -- the end of ult anim
  378.  
  379. --[[ ult name changer made by Owner of Aztech ]]
  380. -- // DEATH COUNTER //
  381. local player = game.Players.LocalPlayer
  382.  
  383. local function detectAndRenameTool()
  384. local tool = player.Backpack:FindFirstChild("Death Counter") or player.Character:FindFirstChild("Table Flip")
  385.  
  386. if tool then
  387. tool.Name = "?" -- Change the ult name
  388. end
  389. end
  390.  
  391. player.CharacterAdded:Connect(function()
  392. task.wait(1)
  393. detectAndRenameTool()
  394. end)
  395.  
  396. player.Backpack.ChildAdded:Connect(function(child)
  397. if child.Name == "Death Counter" then
  398. detectAndRenameTool()
  399. end
  400. end)
  401.  
  402. detectAndRenameTool()
  403.  
  404. -- // SERIOUS PUNCH //
  405. local player = game.Players.LocalPlayer
  406.  
  407. local function detectAndRenameTool()
  408. local tool = player.Backpack:FindFirstChild("Serious Punch") or player.Character:FindFirstChild("Table Flip")
  409.  
  410. if tool then
  411. tool.Name = "?" -- Change the ult name
  412. end
  413. end
  414.  
  415. player.CharacterAdded:Connect(function()
  416. task.wait(1)
  417. detectAndRenameTool()
  418. end)
  419.  
  420. player.Backpack.ChildAdded:Connect(function(child)
  421. if child.Name == "Serious Punch" then
  422. detectAndRenameTool()
  423. end
  424. end)
  425.  
  426. detectAndRenameTool()
  427.  
  428. -- // TABLE FLIP //
  429. local player = game.Players.LocalPlayer
  430.  
  431. local function detectAndRenameTool()
  432. local tool = player.Backpack:FindFirstChild("Table Flip") or player.Character:FindFirstChild("Table Flip")
  433.  
  434. if tool then
  435. tool.Name = "?" -- Change the ult name
  436. end
  437. end
  438.  
  439. player.CharacterAdded:Connect(function()
  440. task.wait(1)
  441. detectAndRenameTool()
  442. end)
  443.  
  444. player.Backpack.ChildAdded:Connect(function(child)
  445. if child.Name == "Table Flip" then
  446. detectAndRenameTool()
  447. end
  448. end)
  449.  
  450. detectAndRenameTool()
  451.  
  452. -- // OMNI DIRECTIONAL PUNCH //
  453. local player = game.Players.LocalPlayer
  454.  
  455. local function detectAndRenameTool()
  456. local tool = player.Backpack:FindFirstChild("Omni Directional Punch") or player.Character:FindFirstChild("Table Flip")
  457.  
  458. if tool then
  459. tool.Name = "?" -- Change the ult name
  460. end
  461. end
  462.  
  463. player.CharacterAdded:Connect(function()
  464. task.wait(1)
  465. detectAndRenameTool()
  466. end)
  467.  
  468. player.Backpack.ChildAdded:Connect(function(child)
  469. if child.Name == "Omni Directional Punch" then
  470. detectAndRenameTool()
  471. end
  472. end)
  473.  
  474. detectAndRenameTool()
  475.  
  476. --[[Execute Anims (Animations when you execute script]]
  477. local sound = Instance.new("Sound")
  478.  
  479. -- Set the Sound ID (example Sound ID from Roblox library)
  480. sound.SoundId = "rbxassetid://74376324560435" -- Replace with your Sound ID
  481.  
  482. -- Set other properties for the sound
  483. sound.Volume = 1
  484. sound.Looped = false -- Set to true if you want the sound to loop
  485. sound.PlayOnRemove = false
  486.  
  487. -- Set the playback speed (change speed here)
  488. local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  489. sound.PlaybackSpeed = playbackSpeed
  490.  
  491. -- Parent the sound to the player's PlayerGui so it plays locally
  492. sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  493.  
  494. -- Play the sound
  495. sound:Play()
  496.  
  497. -- Optionally, destroy the sound after it finishes playing
  498. sound.Ended:Connect(function()
  499. sound:Destroy()
  500. end)
  501.  
  502. local highlight = Instance.new("Highlight")
  503. local p = game.Players.LocalPlayer
  504. local Humanoid = p.Character:WaitForChild("Humanoid")
  505.  
  506. for _, animTrack in pairs(Humanoid:GetPlayingAnimationTracks()) do
  507. animTrack:Stop()
  508. end
  509.  
  510. local AnimAnim = Instance.new("Animation")
  511. AnimAnim.AnimationId = "rbxassetid://18182425133" -- Replace with your animation ID
  512.  
  513. local Anim = Humanoid:LoadAnimation(AnimAnim)
  514.  
  515. local startTime = 1.8
  516.  
  517. Anim:Play()
  518. Anim:AdjustSpeed(1)
  519. Anim.TimePosition = startTime
  520. Anim:AdjustSpeed(1)
  521.  
  522. highlight.Name = "Outline"
  523. highlight.Parent = character
  524. highlight.FillTransparency = 0
  525. highlight.OutlineColor = Color3.fromRGB(0,0,0)
  526. highlight.FillColor = Color3.fromRGB(0,0,0)
  527. wait(1.4)
  528. highlight:Destroy()
  529.  
  530. local sound = Instance.new("Sound")
  531.  
  532. -- Set the Sound ID (example Sound ID from Roblox library)
  533. sound.SoundId = "rbxassetid://17858030830" -- Replace with your Sound ID
  534.  
  535. -- Set other properties for the sound
  536. sound.Volume = 5
  537. sound.Looped = false -- Set to true if you want the sound to loop
  538. sound.PlayOnRemove = false
  539.  
  540. -- Set the playback speed (change speed here)
  541. local playbackSpeed = 1 -- Adjust playback speed (1 = normal, 1.5 = faster, 0.5 = slower)
  542. sound.PlaybackSpeed = playbackSpeed
  543.  
  544. -- Parent the sound to the player's PlayerGui so it plays locally
  545. sound.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  546.  
  547.  
  548. -- Play the sound
  549. sound:Play()
  550.  
  551. -- Optionally, destroy the sound after it finishes playing
  552. sound.Ended:Connect(function()
  553. sound:Destroy()
  554. end)
  555.  
  556. local Test = game:GetService("ReplicatedStorage").Resources.KJEffects["fine...Emit2OG"].EmitBatch2 local test = Test:Clone()
  557. test.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  558.  
  559. for _, child in ipairs(test:GetChildren()) do
  560. if child:IsA("ParticleEmitter") then
  561.  
  562. child:Emit(15)
  563. child.Enabled = true
  564. wait(1.5)
  565. test:Destroy()
  566. end
  567. end
  568.  
  569. --END OF EXECUTE ANIM
  570.  
  571. -- Services
  572. local Players = game:GetService("Players")
  573. local TweenService = game:GetService("TweenService")
  574.  
  575. -- Local Player
  576. local player = Players.LocalPlayer
  577. local playerGui = player:WaitForChild("PlayerGui")
  578.  
  579. -- GUI and color adjustment function
  580. local function updateBarColor()
  581. -- Find the ScreenGui on the screen
  582. local screenGui = playerGui:FindFirstChild("ScreenGui")
  583. if not screenGui then return end
  584.  
  585. -- Find the MagicHealth Frame
  586. local magicHealthFrame = screenGui:FindFirstChild("MagicHealth")
  587. if not magicHealthFrame then return end
  588.  
  589. -- Find the Health Frame
  590. local healthFrame = magicHealthFrame:FindFirstChild("Health")
  591. if not healthFrame then return end
  592.  
  593. -- Find the Bar Frame
  594. local barFrame = healthFrame:FindFirstChild("Bar")
  595. if not barFrame then return end
  596.  
  597. -- Find the ImageLabel with ImageColor3 property inside the Bar Frame
  598. local imageLabel = barFrame:FindFirstChild("Bar")
  599. if not imageLabel or not imageLabel:IsA("ImageLabel") then return end
  600.  
  601. -- Set the color to yellow
  602. imageLabel.ImageColor3 = Color3.fromRGB(138, 138, 138) -- Yellow
  603. end
  604.  
  605. -- Check the GUI again when the character resets
  606. local function onCharacterAdded(character)
  607. -- Update the GUI
  608. updateBarColor()
  609. end
  610.  
  611. -- Check the local player's character
  612. local function onPlayerAdded()
  613. local character = player.Character or player.CharacterAdded:Wait()
  614. onCharacterAdded(character)
  615.  
  616. -- Check again when the character changes
  617. player.CharacterAdded:Connect(onCharacterAdded)
  618. end
  619.  
  620. -- Check when the player is added
  621. Players.PlayerAdded:Connect(onPlayerAdded)
  622. if player then
  623. onPlayerAdded()
  624. end
  625.  
  626. -- LocalScript inside StarterPlayerScripts
  627.  
  628. -- Function to show the notification
  629. game:GetService("StarterGui"):SetCore("SendNotification", {
  630. Title = "Saitama to Black",
  631. Text = "By Sundayo",
  632. Icon = "rbxassetid://115474707256695", -- Optional, you can provide an image asset ID or leave empty
  633. Duration = 3 -- Duration in seconds
  634. })
  635.  
Tags: TSB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement