kodiakexploits

project ligma lgoo

Nov 26th, 2025
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. local Ligma = Instance.new("ScreenGui")
  2. local Main = Instance.new("ImageLabel")
  3. local Orbit = Instance.new("ImageLabel")
  4. local Ring = Instance.new("ImageLabel")
  5. local Main2 = Instance.new("ImageLabel")
  6.  
  7. --define stuff:
  8.  
  9. Ligma.Name = "Ligma"
  10. Ligma.Parent = game.Players.LocalPlayer.PlayerGui
  11. Ligma.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Main.Name = "Main"
  14. Main.Parent = Ligma
  15. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  16. Main.BackgroundTransparency = 1.000
  17. Main.Position = UDim2.new(0.5, -2000, 0.5, -50)
  18. Main.Size = UDim2.new(0, 100, 0, 100)
  19. Main.Image = "rbxassetid://7102117818"
  20.  
  21. Orbit.Name = "Orbit"
  22. Orbit.Parent = Main
  23. Orbit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. Orbit.BackgroundTransparency = 1.000
  25. Orbit.Size = UDim2.new(0.170000002, 0, 0.170000002, 0)
  26. Orbit.ZIndex = 2
  27. Orbit.Image = "http://www.roblox.com/asset/?id=7101990169"
  28.  
  29. Ring.Name = "Ring"
  30. Ring.Parent = Main
  31. Ring.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32. Ring.BackgroundTransparency = 1.000
  33. Ring.Size = UDim2.new(1, 0, 1, 0)
  34. Ring.Image = "rbxassetid://7102118272"
  35.  
  36. Main2.Name = "Main2"
  37. Main2.Parent = Main
  38. Main2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  39. Main2.BackgroundTransparency = 1.000
  40. Main2.Size = UDim2.new(1, 0, 1, 0)
  41. Main2.ZIndex = 3
  42. Main2.Image = "rbxassetid://7102276469"
  43. Main2.ImageTransparency = 1.000
  44.  
  45. -- cool script time yayyyy:
  46.  
  47. local function HKOJMR_fake_script() -- Ligma.Orbi
  48. local script = Instance.new('LocalScript', Ligma)
  49.  
  50. local Main = script.Parent.Main
  51. local Main2 = Main.Main2
  52. local Orbit = Main.Orbit
  53. local Ring = Main.Ring
  54.  
  55. --Notice: This relies on the fact it will be a perfectly round icon.
  56. local RS = game:GetService("RunService").Heartbeat
  57. local Tween = game:GetService("TweenService")
  58. local WaitTime = 0.25
  59. local LoadInfo = TweenInfo.new(WaitTime,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0)
  60. local FlashInfo = TweenInfo.new(WaitTime,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,1,true,0)
  61. local hk = Main.AbsoluteSize.X/2
  62. local MainSize = Main.AbsoluteSize.X
  63. local ls = Orbit.AbsoluteSize.X/2
  64. local r = hk
  65. local theta = 0
  66. local step = (2*math.pi)/450
  67. local rotvel = 0.15
  68. local StepInstance = Instance.new("NumberValue")
  69. local RotInstance = Instance.new("NumberValue")
  70. StepInstance.Changed:Connect(function()
  71. step = StepInstance.Value
  72. end)
  73. RotInstance.Changed:Connect(function()
  74. rotvel = RotInstance.Value
  75. end)
  76.  
  77. local Modes = {
  78. --Main Image--
  79. Tween:Create(Main2,LoadInfo,{ImageTransparency=0.5}), --Indicates script loading
  80. Tween:Create(Main2,LoadInfo,{ImageTransparency=1}), --Indicated script completed
  81. Tween:Create(Main2,FlashInfo,{ImageTransparency=0}), --Pulse effect for completed
  82. --Step Tween--
  83. Tween:Create(StepInstance,LoadInfo,{Value=(2*math.pi)/180}),
  84. Tween:Create(StepInstance,LoadInfo,{Value=(2*math.pi)/450}),
  85. --Rot Tween--
  86. Tween:Create(RotInstance,LoadInfo,{Value=1}),
  87. Tween:Create(RotInstance,LoadInfo,{Value=0.35}),
  88. }
  89. Modes[2].Completed:Connect(function()
  90. Modes[3]:Play()
  91. end)
  92.  
  93. local function ScriptLoading()
  94. Modes[6]:Play()
  95. Modes[4]:Play()
  96. Modes[1]:Play()
  97. end
  98.  
  99. local function ScriptDone()
  100. Modes[2]:Play()
  101. Modes[5]:Play()
  102. Modes[7]:Play()
  103. end
  104. spawn(function()
  105. local deb = false
  106. local hi = script.Parent.Main
  107. hi:TweenPosition(UDim2.new(0.5, -50,0.5, -50), Enum.EasingDirection.In)
  108. wait'3'
  109. hi:TweenPosition(UDim2.new(0, 12,1, -115), Enum.EasingDirection.Out)
  110. game:GetService'Players'.LocalPlayer.Chatted:Connect(function(agg)
  111. pcall(function()
  112. if agg == '/e hidemeh' then
  113. hi.Visible = not hi.Visible
  114. end
  115. end)
  116. end)
  117. end)
  118.  
  119. while RS:wait() do
  120. theta = theta < 360 and theta + step or 0
  121. local x = (hk + r * math.cos(theta) - ls)
  122. local y = (hk + r * math.sin(theta) - ls)
  123. Orbit.Position = UDim2.new(x/MainSize,0,y/MainSize,0)
  124. Ring.Rotation = Ring.Rotation < 360 and Ring.Rotation + rotvel or 0
  125. RS:wait()
  126. end
  127. end
  128. coroutine.wrap(HKOJMR_fake_script)()
Add Comment
Please, Sign In to add comment