Advertisement
largechairlol

Obunga version 2

Feb 7th, 2025 (edited)
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Chat_ = Instance.new("ScreenGui")
  7. local obama = Instance.new("ImageLabel")
  8. local obunga = Instance.new("ImageLabel")
  9. local help = Instance.new("ImageLabel")
  10. local nope = Instance.new("Sound")
  11. local nope2 = Instance.new("Sound")
  12. local static = Instance.new("Sound")
  13.  
  14. --Properties:
  15.  
  16. Chat_.Name = "Chat_"
  17. Chat_.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18. Chat_.DisplayOrder = 3
  19. Chat_.ResetOnSpawn = false
  20.  
  21. obama.Name = "obama"
  22. obama.Parent = Chat_
  23. obama.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  24. obama.BorderColor3 = Color3.fromRGB(27, 42, 53)
  25. obama.Size = UDim2.new(1, 0, 1, 0)
  26. obama.Image = "rbxassetid://5643866"
  27.  
  28. obunga.Name = "obunga"
  29. obunga.Parent = Chat_
  30. obunga.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  31. obunga.BackgroundTransparency = 1.000
  32. obunga.BorderColor3 = Color3.fromRGB(27, 42, 53)
  33. obunga.Size = UDim2.new(1, 0, 1, 0)
  34. obunga.Image = "rbxassetid://15603607126"
  35. obunga.ImageTransparency = 1.000
  36.  
  37. help.Name = "help"
  38. help.Parent = Chat_
  39. help.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  40. help.BackgroundTransparency = 1.000
  41. help.BorderColor3 = Color3.fromRGB(27, 42, 53)
  42. help.Size = UDim2.new(1, 0, 1, 0)
  43. help.ZIndex = 0
  44. help.Image = "rbxassetid://2050833946"
  45. help.ImageTransparency = 1.000
  46.  
  47. nope.Name = "nope"
  48. nope.Parent = Chat_
  49. nope.SoundId = "rbxassetid://9072304992"
  50. nope.Looped = false
  51. nope.Playing = true
  52. nope.Pitch = 1
  53. nope.Volume = 10
  54.  
  55. nope2.Name = "nope2"
  56. nope2.Parent = Chat_
  57. nope2.SoundId = "rbxassetid://9041745502"
  58. nope2.Looped = false
  59. nope2.Playing = false
  60. nope2.Pitch = 1
  61. nope2.Volume = 1.069
  62.  
  63. static.Name = "static"
  64. static.Parent = Chat_
  65. static.SoundId = "rbxassetid://5547866547"
  66. static.Looped = false
  67. static.Playing = false
  68. static.Pitch = 1
  69. static.Volume = 7
  70.  
  71. -- Scripts:
  72.  
  73. local function CJOI_fake_script() -- Chat_.LocalScript
  74. local script = Instance.new('LocalScript', Chat_)
  75.  
  76. if not game:IsLoaded() then
  77. game.Loaded:Wait()
  78. end
  79.  
  80. game:GetService("ReplicatedFirst"):RemoveDefaultLoadingScreen()
  81.  
  82. script.Parent:WaitForChild("obama").Visible = true;
  83. game:GetService("Players").LocalPlayer.PlayerGui:SetTopbarTransparency(0);
  84. script.Parent:WaitForChild("nope"):Play();
  85. while true do
  86. wait("3.8");
  87. if script.Parent.nope.TimePosition >= 0 then
  88. break;
  89. end;
  90. end;
  91. for v1 = 1, 10 do
  92. script.Parent.obama.ImageTransparency = script.Parent.obama.ImageTransparency + 0.1;
  93. wait("");
  94. end;
  95. script.Parent.obama.ZIndex = 0;
  96. while true do
  97. wait("4.5");
  98. if script.Parent.nope.TimePosition >= 0 then
  99. break;
  100. end;
  101. end;
  102. for v2 = 1, 10 do
  103. script.Parent.obunga.ImageTransparency = script.Parent.obunga.ImageTransparency - 0.1;
  104. wait(".1");
  105. end;
  106. wait("0")
  107. script.Parent.help.ImageTransparency = 0;
  108. while true do
  109. wait("");
  110. if script.Parent.nope.TimePosition >= 0 then
  111. break;
  112. end;
  113. end;
  114. script.Parent.nope2:Play();
  115. spawn(function()
  116. while script.Parent.nope2.Playing == true do
  117. wait(math.random(1, 7));
  118. script.Parent.static:Play();
  119. script.Parent.help.ZIndex = 2;
  120. wait(".3");
  121. script.Parent.help.ZIndex = 0;
  122. script.Parent.static:Stop();
  123. end;
  124. end);
  125. while true do
  126. wait("1");
  127. if script.Parent.nope2.Playing == false then
  128. break;
  129. end;
  130. end;
  131. game:GetService("Players").LocalPlayer.PlayerGui:SetTopbarTransparency(0.5);
  132. script.Parent:Destroy();
  133. Instance.new("Hint", workspace.Terrain).Text = "Obunga is still here. You are not safe.";
  134.  
  135.  
  136. end
  137. coroutine.wrap(CJOI_fake_script)()
  138.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement