Advertisement
ILovePotato

Untitled

Jan 25th, 2025
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.42 KB | None | 0 0
  1. task.spawn(function()
  2. wait(1.3)
  3. local player = game.Players.LocalPlayer
  4. local playerCharacter = player.Character or player.CharacterAdded:Wait()
  5. local mesh = game.ReplicatedStorage.Resources.StoicBomb.GAG.End.Mesh
  6.  
  7. if mesh then
  8. local part = Instance.new("Part")
  9. part.Size = Vector3.new(0.1, 0.3, 0.3)
  10. part.Anchored = true
  11. part.CanCollide = false
  12. part.Transparency = 1
  13. part.Parent = game.Workspace
  14.  
  15. local meshClone = mesh:Clone()
  16. meshClone.Parent = part
  17. meshClone.Scale = Vector3.new(1, 1, 1)
  18. local decal = Instance.new("Decal")
  19. decal.Texture = "rbxassetid://9330320034"
  20. decal.Face = Enum.NormalId.Front
  21. decal.Transparency = 0.8
  22. decal.Parent = part
  23. local humanoidRootPart = playerCharacter:WaitForChild("HumanoidRootPart")
  24. local offset = Vector3.new(0, 16, 0)
  25. part.CFrame = CFrame.new(humanoidRootPart.Position + offset)
  26. part.Rotation = Vector3.new(0.1, 0, 90)
  27. wait(1.6)
  28. part:Destroy()
  29. end
  30. end)
  31.  
  32. task.spawn(function()
  33. wait(1.3)
  34. local TweenService = game:GetService("TweenService")
  35. local colorCorrection = Instance.new("ColorCorrectionEffect")
  36. colorCorrection.Parent = game.Lighting
  37. colorCorrection.Brightness = 0
  38. colorCorrection.Contrast = 0
  39. colorCorrection.Saturation = 0
  40. local targetProperties = {
  41. Brightness = -0.998,
  42. Contrast = 3.991,
  43. Saturation = -0.299
  44. }
  45.  
  46. local tweenInfo = TweenInfo.new(
  47. 0.6,
  48. Enum.EasingStyle.Sine,
  49. Enum.EasingDirection.Out
  50. )
  51.  
  52. local tween = TweenService:Create(colorCorrection, tweenInfo, targetProperties)
  53. tween:Play()
  54. wait(0.6)
  55. local TweenService = game:GetService("TweenService")
  56. local colorCorrection = Instance.new("ColorCorrectionEffect")
  57. colorCorrection.Parent = game.Lighting
  58. colorCorrection.Brightness = 0
  59. colorCorrection.Contrast = 0
  60. colorCorrection.Saturation = 0
  61. local targetProperties = {
  62. Brightness = 1,
  63. Contrast = 0.515,
  64. Saturation = -0.039
  65. }
  66.  
  67. local tweenInfo = TweenInfo.new(
  68. 0.3,
  69. Enum.EasingStyle.Sine,
  70. Enum.EasingDirection.Out
  71. )
  72.  
  73. local tween = TweenService:Create(colorCorrection, tweenInfo, targetProperties)
  74. tween:Play()
  75. end)
  76.  
  77. task.spawn(function()
  78. wait(1.3)
  79. local vfx = game.ReplicatedStorage.Resources.StoicBomb["stoic bomb boom entrance"].smok:Clone()
  80. vfx.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  81. for _, e in ipairs(vfx:GetChildren()) do
  82. if e:IsA("ParticleEmitter") then
  83. e:Emit(100)
  84. end
  85. end
  86.  
  87. local vfx = game.ReplicatedStorage.Resources.StoicBomb["stoic bomb boom entrance"]["BOMB.TWO."]:Clone()
  88. vfx.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  89. vfx:Emit(10)
  90. end)
  91.  
  92. task.spawn(function()
  93. wait(1.3)
  94. local TweenService = game:GetService("TweenService")
  95. local RunService = game:GetService("RunService")
  96.  
  97. local mainModel = game.ReplicatedStorage.Resources.StoicBomb.WindTime:Clone()
  98. local invertedModel = mainModel:FindFirstChild("Inverted")
  99. local windModel = mainModel:FindFirstChild("WindTimeGlass")
  100. mainModel.Parent = workspace.Thrown
  101.  
  102. local character = game.Players.LocalPlayer.Character
  103. local humanoidRootPart = character and character:FindFirstChild("HumanoidRootPart")
  104.  
  105. local targetScale = Vector3.new(250, 250, 250)
  106. local tweenInfo = TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, 0, false, 0)
  107.  
  108. local function tweenModel(model)
  109. local totalTweens = 0
  110. local completedTweens = 0
  111.  
  112. if not model then
  113. print("Error: Model is nil.")
  114. return
  115. end
  116.  
  117. for _, part in pairs(model:GetDescendants()) do
  118. if part:IsA("BasePart") then
  119. totalTweens += 1
  120. local tween = TweenService:Create(part, tweenInfo, {Size = targetScale})
  121.  
  122. tween.Completed:Connect(function()
  123. completedTweens += 1
  124. if completedTweens == totalTweens then
  125. mainModel:Destroy()
  126. end
  127. end)
  128.  
  129. tween:Play()
  130. end
  131. end
  132.  
  133. if totalTweens == 0 then
  134. mainModel:Destroy()
  135. end
  136. end
  137.  
  138. local function setModelCFrameToHumanoidRootPart(model, humanoidRootPart)
  139. if not model.PrimaryPart then
  140. print("Error: The model does not have a PrimaryPart set.")
  141. return
  142. end
  143.  
  144. if humanoidRootPart then
  145. model:SetPrimaryPartCFrame(humanoidRootPart.CFrame)
  146. else
  147. print("Error: HumanoidRootPart not found.")
  148. end
  149. end
  150.  
  151. local rotationSpeed = 3
  152.  
  153. local function rotateModel(model)
  154. if not model.PrimaryPart then
  155. print("Error: The model does not have a PrimaryPart set.")
  156. return
  157. end
  158.  
  159. RunService.RenderStepped:Connect(function(deltaTime)
  160. model:SetPrimaryPartCFrame(model.PrimaryPart.CFrame * CFrame.Angles(0, rotationSpeed * deltaTime, 0))
  161. end)
  162. end
  163.  
  164. if humanoidRootPart then
  165. setModelCFrameToHumanoidRootPart(mainModel, humanoidRootPart)
  166. rotateModel(mainModel) -- Start spinning the mainModel
  167.  
  168. if invertedModel then
  169. tweenModel(invertedModel)
  170. else
  171. print("Error: Inverted model not found.")
  172. end
  173.  
  174. if windModel then
  175. tweenModel(windModel)
  176. else
  177. print("Error: Wind model not found.")
  178. end
  179. else
  180. print("Error: HumanoidRootPart not found.")
  181. end
  182. wait(1.4)
  183. mainModel:Destroy()
  184. end)
  185.  
  186. task.spawn(function()
  187. wait(1.3)
  188. local TweenService = game:GetService("TweenService")
  189. local RunService = game:GetService("RunService") -- Add RunService to handle spinning
  190. local mainModel = game.ReplicatedStorage.Resources.StoicBomb.InWind:Clone()
  191. local invertedModel = mainModel:FindFirstChild("Inverted")
  192. local windModel = mainModel:FindFirstChild("WindTime")
  193. mainModel.Parent = workspace.Thrown
  194.  
  195. -- Get the character and HumanoidRootPart
  196. local character = game.Players.LocalPlayer.Character
  197. local humanoidRootPart = character and character:FindFirstChild("HumanoidRootPart")
  198.  
  199. -- Define the target scale for tweening
  200. local targetScale = Vector3.new(250, 250, 250)
  201.  
  202. -- Tween information with slower time
  203. local tweenInfo = TweenInfo.new(
  204. 0.3, -- Time (in seconds) - increased for slower resizing
  205. Enum.EasingStyle.Linear, -- EasingStyle
  206. Enum.EasingDirection.Out, -- EasingDirection
  207. 0, -- RepeatCount (0 = no repeat)
  208. false, -- Reverses (false = no reverse)
  209. 0 -- DelayTime
  210. )
  211.  
  212. -- Function to apply tween to a model
  213. local function tweenModel(model)
  214. local totalTweens = 0
  215. local completedTweens = 0
  216.  
  217. if not model then
  218. print("Error: Model is nil.")
  219. return
  220. end
  221.  
  222. for _, part in pairs(model:GetDescendants()) do
  223. if part:IsA("BasePart") then
  224. totalTweens += 1
  225. local tween = TweenService:Create(part, tweenInfo, {Size = targetScale})
  226.  
  227. print("Creating tween for part:", part.Name)
  228.  
  229. tween.Completed:Connect(function()
  230. print("Tween completed for part:", part.Name)
  231. completedTweens += 1
  232. if completedTweens == totalTweens then
  233. print("All tweens completed for model:", model.Name)
  234. mainModel:Destroy()
  235. end
  236. end)
  237.  
  238. tween:Play()
  239. print("Playing tween for part:", part.Name)
  240. else
  241. print("Skipping non-BasePart:", part.Name)
  242. end
  243. end
  244.  
  245. if totalTweens == 0 then
  246. print("No BaseParts found in model:", model.Name)
  247. mainModel:Destroy()
  248. end
  249. end
  250.  
  251. -- Function to set mainModel's CFrame to match a HumanoidRootPart
  252. local function setModelCFrameToHumanoidRootPart(model, humanoidRootPart)
  253. if not model.PrimaryPart then
  254. print("Error: The model does not have a PrimaryPart set.")
  255. return
  256. end
  257.  
  258. if humanoidRootPart then
  259. model:SetPrimaryPartCFrame(humanoidRootPart.CFrame)
  260. print("Model CFrame set to HumanoidRootPart CFrame.")
  261. else
  262. print("Error: HumanoidRootPart not found.")
  263. end
  264. end
  265.  
  266. -- Function to rotate the model
  267. local rotationSpeed = 3 -- Speed of rotation in radians per second
  268. local function rotateModel(model)
  269. if not model.PrimaryPart then
  270. print("Error: The model does not have a PrimaryPart set.")
  271. return
  272. end
  273.  
  274. RunService.RenderStepped:Connect(function(deltaTime)
  275. model:SetPrimaryPartCFrame(model.PrimaryPart.CFrame * CFrame.Angles(0, rotationSpeed * deltaTime, 0))
  276. end)
  277. end
  278.  
  279. -- Check if the HumanoidRootPart exists
  280. if humanoidRootPart then
  281. -- Set the CFrame of the mainModel
  282. setModelCFrameToHumanoidRootPart(mainModel, humanoidRootPart)
  283.  
  284. -- Start rotating the model
  285. rotateModel(mainModel)
  286.  
  287. -- Tween both models
  288. if invertedModel then
  289. tweenModel(invertedModel)
  290. else
  291. print("Error: Inverted model not found.")
  292. end
  293.  
  294. if windModel then
  295. tweenModel(windModel)
  296. else
  297. print("Error: Wind model not found.")
  298. end
  299. else
  300. print("Error: HumanoidRootPart not found.")
  301. end
  302.  
  303. wait(1.4)
  304. mainModel:Destroy()
  305. end)
  306.  
  307. spawn(function()
  308. local soundeffect = Instance.new("Sound")
  309. soundeffect.SoundId = "rbxassetid://17149593018"
  310. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  311. soundeffect:Play()
  312. soundeffect.Volume = 2
  313. wait(0.5)
  314. local soundeffect = Instance.new("Sound")
  315. soundeffect.SoundId = "rbxassetid://17141392513"
  316. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  317. soundeffect:Play()
  318. soundeffect.Volume = 4
  319. wait(0.3)
  320. local soundeffect = Instance.new("Sound")
  321. soundeffect.SoundId = "rbxassetid://17141392976"
  322. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  323. soundeffect:Play()
  324. soundeffect.Volume = 2
  325. wait(1)
  326. local soundeffect = Instance.new("Sound")
  327. soundeffect.SoundId = "rbxassetid://17141392676"
  328. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  329. soundeffect:Play()
  330. soundeffect.Volume = 3
  331. wait(1.5)
  332. local soundeffect = Instance.new("Sound")
  333. soundeffect.SoundId = "rbxassetid://17141392854"
  334. soundeffect.Parent = game.Players.LocalPlayer.Character.Torso
  335. soundeffect:Play()
  336. soundeffect.Volume = 5
  337. end)
  338. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0
  339. local player = game.Players.LocalPlayer
  340. repeat wait() until player.Character.Humanoid
  341. local humanoid = player.Character.Humanoid
  342. local character = player.Character or player.CharacterAdded:Wait()
  343. local UserInputService = game:GetService("UserInputService")
  344.  
  345. local anim = Instance.new("Animation")
  346. anim.AnimationId = "rbxassetid://17141153099"
  347.  
  348. local playAnim = humanoid:LoadAnimation(anim)
  349. anim.AnimationId = "rbxassetid://0"
  350. playAnim:Play()
  351. playAnim:AdjustSpeed(1)
  352. wait(0.3)
  353. playAnim:AdjustSpeed(1)
  354. spawn(function()
  355. wait(1)
  356. local omgstoicreal = game.ReplicatedStorage.Resources.StoicBomb.OHNO.Normal:Clone()
  357. local parent = omgstoicreal
  358. local omgstoicreal = game.ReplicatedStorage.Resources.StoicBomb.OHNO.Normal:Clone()
  359. local parent = omgstoicreal
  360. local omgstoicreal = game.ReplicatedStorage.Resources.StoicBomb.OHNO.Normal:Clone()
  361. local parent = omgstoicreal
  362. local omgstoicreal = game.ReplicatedStorage.Resources.StoicBomb.OHNO.Normal:Clone()
  363. local parent = omgstoicreal
  364. local attachments = {}
  365.  
  366. for _, child in ipairs(parent:GetChildren()) do
  367. if child:IsA("Attachment") and child.Name == "Attachment" then
  368. table.insert(attachments, child)
  369. end
  370. end
  371.  
  372. local newParent = game.Players.LocalPlayer.Character:FindFirstChild("Torso")
  373.  
  374. if newParent then
  375. for _, attachment in ipairs(attachments) do
  376. -- Attachment'ın konumunu ayarlayın (örneğin, aşağıda 2 birim)
  377. attachment.Parent = newParent
  378. attachment.Position = attachment.Position + Vector3.new(0, -4, 0) -- Y ekseninde -2 birim aşağı
  379. game.Players.LocalPlayer.Character.Torso.Attachment:Destroy()
  380. end
  381. end
  382. end)
  383.  
  384. spawn(function()
  385. local speedlinesamazingomg = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylines:Clone()
  386. local speedlinesamazingomg2 = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylinesfire:Clone()
  387. speedlinesamazingomg.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  388. speedlinesamazingomg2.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  389. local hmattachmentsus = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment:Clone()
  390. hmattachmentsus.Parent = game.Players.LocalPlayer.Character.Torso
  391. game.Players.LocalPlayer.Character.Torso.Attachment["STAR!!!"].Enabled = true
  392. game.Players.LocalPlayer.Character.Torso.Attachment.speedylines.Enabled = true
  393. game.Players.LocalPlayer.Character.Torso.Attachment.speedylinesfire.Enabled = true
  394. local speedlinesamazingomg = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylines:Clone()
  395. local speedlinesamazingomg2 = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylinesfire:Clone()
  396. speedlinesamazingomg.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  397. speedlinesamazingomg2.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  398. local hmattachmentsus = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment:Clone()
  399. hmattachmentsus.Parent = game.Players.LocalPlayer.Character.Torso
  400. game.Players.LocalPlayer.Character.Torso.Attachment["STAR!!!"].Enabled = true
  401. game.Players.LocalPlayer.Character.Torso.Attachment.speedylines.Enabled = true
  402. game.Players.LocalPlayer.Character.Torso.Attachment.speedylinesfire.Enabled = true
  403. local speedlinesamazingomg = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylines:Clone()
  404. local speedlinesamazingomg2 = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylinesfire:Clone()
  405. speedlinesamazingomg.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  406. speedlinesamazingomg2.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  407. local hmattachmentsus = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment:Clone()
  408. hmattachmentsus.Parent = game.Players.LocalPlayer.Character.Torso
  409. game.Players.LocalPlayer.Character.Torso.Attachment["STAR!!!"].Enabled = true
  410. game.Players.LocalPlayer.Character.Torso.Attachment.speedylines.Enabled = true
  411. game.Players.LocalPlayer.Character.Torso.Attachment.speedylinesfire.Enabled = true
  412. local speedlinesamazingomg = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylines:Clone()
  413. local speedlinesamazingomg2 = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylinesfire:Clone()
  414. speedlinesamazingomg.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  415. speedlinesamazingomg2.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  416. local hmattachmentsus = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment:Clone()
  417. hmattachmentsus.Parent = game.Players.LocalPlayer.Character.Torso
  418. game.Players.LocalPlayer.Character.Torso.Attachment["STAR!!!"].Enabled = true
  419. game.Players.LocalPlayer.Character.Torso.Attachment.speedylines.Enabled = true
  420. game.Players.LocalPlayer.Character.Torso.Attachment.speedylinesfire.Enabled = true
  421. local speedlinesamazingomg = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylines:Clone()
  422. local speedlinesamazingomg2 = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylinesfire:Clone()
  423. speedlinesamazingomg.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  424. speedlinesamazingomg2.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  425. local hmattachmentsus = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment:Clone()
  426. hmattachmentsus.Parent = game.Players.LocalPlayer.Character.Torso
  427. game.Players.LocalPlayer.Character.Torso.Attachment["STAR!!!"].Enabled = true
  428. game.Players.LocalPlayer.Character.Torso.Attachment.speedylines.Enabled = true
  429. game.Players.LocalPlayer.Character.Torso.Attachment.speedylinesfire.Enabled = true
  430. local speedlinesamazingomg = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylines:Clone()
  431. local speedlinesamazingomg2 = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.speedylinesfire:Clone()
  432. speedlinesamazingomg.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  433. speedlinesamazingomg2.Parent = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment
  434. local hmattachmentsus = game.ReplicatedStorage.Resources.KJEffects.stoicbombspeedlines.Attachment:Clone()
  435. hmattachmentsus.Parent = game.Players.LocalPlayer.Character.Torso
  436. game.Players.LocalPlayer.Character.Torso.Attachment["STAR!!!"].Enabled = true
  437. game.Players.LocalPlayer.Character.Torso.Attachment.speedylines.Enabled = true
  438. game.Players.LocalPlayer.Character.Torso.Attachment.speedylinesfire.Enabled = true
  439. end)
  440. local light1 = game.ReplicatedStorage.Resources.StoicBomb["stoicbombspeedlines"].POINTOLIGHTO:Clone()
  441. light1.Parent = game.Players.LocalPlayer.Character["Torso"]
  442. for _, child in ipairs(light1:GetChildren()) do
  443. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  444. child:Emit(1) -- Emit 20 particles
  445. end
  446. end
  447.  
  448.  
  449. local function adjustAndEmitParticles(part, emitAmount)
  450. part.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  451. for _, child in ipairs(part:GetChildren()) do
  452. if child:IsA("ParticleEmitter") then
  453. child.Size = NumberSequence.new({
  454. NumberSequenceKeypoint.new(0, 10),
  455. NumberSequenceKeypoint.new(1, 20)
  456. })
  457. child:Emit(emitAmount)
  458. end
  459. end
  460. end
  461.  
  462. local red4_7 = game.ReplicatedStorage.Resources.StoicBomb["OHNO"].Normal.Attachment:Clone()
  463. adjustAndEmitParticles(red4_7, 1)
  464.  
  465. wait(0.1)
  466. local red4_1 = game.ReplicatedStorage.Resources.StoicBomb["HEAT"].Part.Attachment:Clone()
  467. red4_1.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  468. for _, child in ipairs(red4_1:GetChildren()) do
  469. if child:IsA("ParticleEmitter") then
  470. child.Size = NumberSequence.new({
  471. NumberSequenceKeypoint.new(0, 10),
  472. NumberSequenceKeypoint.new(1, 20)
  473. })
  474. child:Emit(1)
  475. end
  476. end
  477.  
  478. local function adjustAndEmitParticles(part)
  479. part.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  480. for _, child in ipairs(part:GetChildren()) do
  481. if child:IsA("ParticleEmitter") then
  482. child.Size = NumberSequence.new({
  483. NumberSequenceKeypoint.new(0, 10),
  484. NumberSequenceKeypoint.new(1, 20)
  485. })
  486. child:Emit(1)
  487. end
  488. end
  489. end
  490.  
  491. local red4_2 = game.ReplicatedStorage.Resources.StoicBomb["Stage1"].Floor.Attachment:Clone()
  492. adjustAndEmitParticles(red4_2)
  493.  
  494. local red4_3 = game.ReplicatedStorage.Resources.StoicBomb["Stage1"].Inverted.MeshPart:Clone()
  495. adjustAndEmitParticles(red4_3)
  496.  
  497. local red4_4 = game.ReplicatedStorage.Resources.StoicBomb["SPREAD"].Part.On:Clone()
  498. adjustAndEmitParticles(red4_4)
  499. wait(1.4)
  500. local boom1 = game.ReplicatedStorage.Resources.KJEffects["stoic bomb boom entrance"].Attachment:Clone()
  501. boom1.Parent = game.Players.LocalPlayer.Character["Torso"]
  502. boom1.CFrame = boom1.CFrame * CFrame.new(0, -4, 0)
  503. for _, child in ipairs(boom1:GetChildren()) do
  504. if child:IsA("ParticleEmitter") then
  505. child:Emit(3)
  506. end
  507. end
  508. wait(1.6)
  509. local stoic1 = game.ReplicatedStorage.Resources.StoicBomb["pre"].Part.Attachment:Clone()
  510. stoic1.Parent = game.Players.LocalPlayer.Character["Torso"]
  511. for _, child in ipairs(stoic1:GetChildren()) do
  512. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  513. child:Emit(1) -- Emit 20 particles
  514. end
  515. end
  516. local red4 = game.ReplicatedStorage.Resources.StoicBomb["Impact"].Part.Impact:Clone()
  517. red4.Parent = game.Players.LocalPlayer.Character["Left Leg"]
  518. for _, child in ipairs(red4:GetChildren()) do
  519. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  520. child:Emit(1) -- Emit 20 particles
  521. end
  522. end
  523. local red4 = game.ReplicatedStorage.Resources.StoicBomb["Impact"].Part.Spin:Clone()
  524. red4.Parent = game.Players.LocalPlayer.Character["Left Leg"]
  525. for _, child in ipairs(red4:GetChildren()) do
  526. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  527. child:Emit(1) -- Emit 20 particles
  528. end
  529. end
  530. local red4 = game.ReplicatedStorage.Resources.StoicBomb["Impact"].Part.Attachment:Clone()
  531. red4.Parent = game.Players.LocalPlayer.Character["Left Leg"]
  532. for _, child in ipairs(red4:GetChildren()) do
  533. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  534. child:Emit(1) -- Emit 20 particles
  535. end
  536. end
  537. wait(0.1)
  538. local stoic2 = game.ReplicatedStorage.Resources.StoicBomb["Main"].Part.Attachment:Clone()
  539. stoic2.Parent = game.Players.LocalPlayer.Character["Torso"]
  540. for _, child in ipairs(stoic2:GetChildren()) do
  541. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  542. child:Emit(1) -- Emit 20 particles
  543. end
  544. end
  545.  
  546. local replicatedStorage = game:GetService("ReplicatedStorage")
  547. local character = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
  548. local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  549. light1:Destroy()
  550. stoic1:Destroy()
  551. stoic2:Destroy()
  552. red4_1:Destroy()
  553. red4_2:Destroy()
  554. red4_3:Destroy()
  555. red4_4:Destroy()
  556. red4_7:Destroy()
  557. local boom2 = game.ReplicatedStorage.Resources.KJEffects["stoic bomb boom entrance"].THEACTUALBOOM:Clone()
  558. boom2.Parent = game.Players.LocalPlayer.Character["Torso"]
  559. for _, child in ipairs(boom2:GetChildren()) do
  560. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  561. child:Emit(5) -- Emit 20 particles
  562. end
  563. end
  564. local stoic1 = game.ReplicatedStorage.Resources.StoicBomb["pre"].Part.Attachment:Clone()
  565. stoic1.Parent = game.Players.LocalPlayer.Character["Torso"]
  566. stoic1.CFrame = stoic1.CFrame * CFrame.new(0, -1, 0)
  567.  
  568. for _, child in ipairs(stoic1:GetChildren()) do
  569. if child:IsA("ParticleEmitter") then
  570. child:Emit(1)
  571. end
  572. end
  573. game.Lighting:FindFirstChildOfClass("ColorCorrectionEffect"):Destroy()
  574. wait(0.00001)
  575. game.Lighting:FindFirstChildOfClass("ColorCorrectionEffect"):Destroy()
  576.  
  577. local boom3 = game.ReplicatedStorage.Resources.KJEffects["stoic bomb boom entrance"].smok:Clone()
  578. boom3.Parent = game.Players.LocalPlayer.Character["Torso"]
  579. for _, child in ipairs(boom3:GetChildren()) do
  580. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  581. child:Emit(5) -- Emit 20 particles
  582. end
  583. end
  584. local red4_5 = game.ReplicatedStorage.Resources.StoicBomb["SPREAD"].Part.WW:Clone()
  585. red4_5.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  586. for _, child in ipairs(red4_5:GetChildren()) do
  587. if child:IsA("ParticleEmitter") then
  588. child:Emit(1)
  589. end
  590. end
  591.  
  592. local red4_6 = game.ReplicatedStorage.Resources.StoicBomb["SPREAD"].Part.On.FF:Clone()
  593. red4_6.Parent = game.Players.LocalPlayer.Character["HumanoidRootPart"]
  594. for _, child in ipairs(red4_6:GetChildren()) do
  595. if child:IsA("ParticleEmitter") then
  596. child:Emit(1)
  597. end
  598. end
  599. local boom2 = game.ReplicatedStorage.Resources.KJEffects["stoic bomb boom entrance"].THEACTUALBOOM:Clone()
  600. boom2.Parent = game.Players.LocalPlayer.Character["Torso"]
  601. for _, child in ipairs(boom2:GetChildren()) do
  602. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  603. child:Emit(5) -- Emit 20 particles
  604. end
  605. end
  606. local boom3 = game.ReplicatedStorage.Resources.KJEffects["stoic bomb boom entrance"].smok:Clone()
  607. boom3.Parent = game.Players.LocalPlayer.Character["Torso"]
  608. for _, child in ipairs(boom3:GetChildren()) do
  609. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  610. child:Emit(5) -- Emit 20 particles
  611. end
  612. end
  613.  
  614. task.spawn(function()
  615. local RunService = game:GetService("RunService")
  616. local Player = game.Players.LocalPlayer
  617. local Camera = game.Workspace.CurrentCamera
  618.  
  619. local shakeDuration = 1
  620. local shakeMagnitude = 9
  621. local shakeFrequency = 20
  622.  
  623. function ScreenShake(duration, magnitude)
  624. local startTime = tick()
  625. local connection
  626.  
  627. connection = RunService.RenderStepped:Connect(function()
  628. local elapsedTime = tick() - startTime
  629. if elapsedTime >= duration then
  630. connection:Disconnect()
  631. return
  632. end
  633.  
  634. local shakeOffset = Vector3.new(
  635. math.random(-magnitude, magnitude) / shakeFrequency,
  636. math.random(-magnitude, magnitude) / shakeFrequency,
  637. math.random(-magnitude, magnitude) / shakeFrequency
  638. )
  639.  
  640. Camera.CFrame = Camera.CFrame * CFrame.new(shakeOffset)
  641. end)
  642. end
  643. ScreenShake(shakeDuration, shakeMagnitude)
  644. end)
  645.  
  646.  
  647. task.spawn(function()
  648. local r = game:GetService("ReplicatedStorage")
  649. local w = game.Workspace
  650. local t = game:GetService("TweenService")
  651. local a = r:FindFirstChild("Resources")
  652. local d
  653.  
  654. if a then
  655. local b = a:FindFirstChild("StoicBomb")
  656. if b then
  657. local c = b:FindFirstChild("Stage1")
  658. if c then
  659. d = c:Clone()
  660. local e = w:FindFirstChild("Thrown")
  661. if e and game.Players.LocalPlayer.Character then
  662. local f = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  663. if f then
  664. d.Parent = e
  665. d:SetPrimaryPartCFrame(f.CFrame * CFrame.new(0, 18, 0))
  666.  
  667. local function g(m)
  668. for _, h in ipairs(m:GetChildren()) do
  669. if h:IsA("Model") then
  670. g(h)
  671. elseif h:IsA("BasePart") or h:IsA("MeshPart") then
  672. local s = TweenInfo.new(0.24, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
  673. t:Create(h, s, {Size = h.Size * 8}):Play()
  674. end
  675. if h:IsA("BasePart") then
  676. for _, i in ipairs(h:GetChildren()) do
  677. if i:IsA("SpecialMesh") then
  678. local sm = TweenInfo.new(0.24, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
  679. t:Create(i, sm, {Scale = i.Scale * 8}):Play()
  680. end
  681. end
  682. end
  683. end
  684. end
  685.  
  686. g(d)
  687. end
  688. end
  689. end
  690. end
  691. end
  692.  
  693. task.delay(0.29, function()
  694. if d then
  695. d:Destroy()
  696. end
  697. end)
  698. end)
  699.  
  700. local boom2 = game.ReplicatedStorage.Resources.KJEffects["stoic bomb boom entrance"].THEACTUALBOOM:Clone()
  701. boom2.Parent = game.Players.LocalPlayer.Character["Torso"]
  702. for _, child in ipairs(boom2:GetChildren()) do
  703. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  704. child:Emit(5) -- Emit 20 particles
  705. end
  706. end
  707. local boom3 = game.ReplicatedStorage.Resources.KJEffects["stoic bomb boom entrance"].smok:Clone()
  708. boom3.Parent = game.Players.LocalPlayer.Character["Torso"]
  709. for _, child in ipairs(boom3:GetChildren()) do
  710. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  711. child:Emit(5) -- Emit 20 particles
  712. end
  713. end
  714. local red4 = game.ReplicatedStorage.Resources.StoicBomb["Ray"].Ray.Attachment:Clone()
  715. red4.Parent = game.Players.LocalPlayer.Character["Left Leg"]
  716. for _, child in ipairs(red4:GetChildren()) do
  717. if child:IsA("ParticleEmitter") then -- Check if the child is a ParticleEmitter
  718. child:Emit(1) -- Emit 20 particles
  719. end
  720. end
  721.  
  722. wait(0.3)
  723. local parent = script.Parent
  724. local attachmentName = "Attachment" -- Silmek istediğiniz attachment'ın adı
  725.  
  726. -- Torso içindeki attachment'ları bul
  727. local torso = game.Players.LocalPlayer.Character:FindFirstChild("Torso")
  728.  
  729. if torso then
  730. for _, child in ipairs(torso:GetChildren()) do
  731. if child:IsA("Attachment") and child.Name == attachmentName then
  732. child:Destroy() -- Attachment'ı sil
  733. end
  734. end
  735. end
  736.  
  737. attachments:Destroy()
  738. wait(0.3)
  739. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  740.  
  741. -- Remove all tools from the player's character and backpack
  742. local player = game.Players.LocalPlayer
  743.  
  744. -- Remove tools from player's backpack
  745. for _, tool in pairs(player.Backpack:GetChildren()) do
  746. if tool:IsA("Tool") then
  747. tool:Destroy()
  748. end
  749. end
  750.  
  751. -- Create a new tool
  752. local tool = Instance.new("Tool")
  753. tool.Name = "Ravage"
  754. tool.RequiresHandle = false -- Ensure the tool has a handle
  755.  
  756. -- Parent the tool to the player's backpack
  757. tool.Parent = game.Players.LocalPlayer.Backpack
  758.  
  759. -- Connect the Activated event to execute loadstring on click
  760. tool.Activated:Connect(function()
  761. loadstring(game:HttpGet("https://pastebin.com/raw/pQBSdrBG"))()
  762. loadstring("print('Loadstring executed!')")()
  763. end)
  764.  
  765. -- Create a new tool
  766. local tool = Instance.new("Tool")
  767. tool.Name = "Swift Sweep"
  768. tool.RequiresHandle = false -- Ensure the tool has a handle
  769.  
  770. -- Parent the tool to the player's backpack
  771. tool.Parent = game.Players.LocalPlayer.Backpack
  772.  
  773. -- Connect the Activated event to execute loadstring on click
  774. tool.Activated:Connect(function()
  775. loadstring(game:HttpGet("https://pastebin.com/raw/awUfMVe5"))()
  776. loadstring("print('Loadstring executed!')")()
  777. end)
  778.  
  779. -- Create a new tool
  780. local tool = Instance.new("Tool")
  781. tool.Name = "Collateral Ruin"
  782. tool.RequiresHandle = false -- Ensure the tool has a handle
  783.  
  784. -- Parent the tool to the player's backpack
  785. tool.Parent = game.Players.LocalPlayer.Backpack
  786.  
  787. -- Connect the Activated event to execute loadstring on click
  788. tool.Activated:Connect(function()
  789. loadstring(game:HttpGet("https://pastebin.com/raw/w55M8x2C"))()
  790. loadstring("print('Loadstring executed!')")()
  791. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement