Rumanthan

Untitled

Mar 24th, 2025
4
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.82 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local Lighting = game:GetService("Lighting")
  3. local player = Players.LocalPlayer
  4. local character = player.Character or player.CharacterAdded:Wait()
  5. local humanoid = character:FindFirstChildOfClass("Humanoid")
  6.  
  7. local correctKey = "RinnLover" -- The required password
  8.  
  9. -- Create Key Input UI
  10. local KeyGui = Instance.new("ScreenGui")
  11. KeyGui.Parent = game.CoreGui
  12.  
  13. local KeyFrame = Instance.new("Frame")
  14. KeyFrame.Size = UDim2.new(0, 250, 0, 150)
  15. KeyFrame.Position = UDim2.new(0.4, 0, 0.3, 0)
  16. KeyFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  17. KeyFrame.Parent = KeyGui
  18.  
  19. local KeyTitle = Instance.new("TextLabel")
  20. KeyTitle.Size = UDim2.new(1, 0, 0, 30)
  21. KeyTitle.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  22. KeyTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  23. KeyTitle.Text = "Enter Password"
  24. KeyTitle.Font = Enum.Font.SourceSansBold
  25. KeyTitle.TextSize = 18
  26. KeyTitle.Parent = KeyFrame
  27.  
  28. local KeyBox = Instance.new("TextBox")
  29. KeyBox.Size = UDim2.new(0.8, 0, 0, 40)
  30. KeyBox.Position = UDim2.new(0.1, 0, 0.3, 0)
  31. KeyBox.PlaceholderText = "Enter Key..."
  32. KeyBox.Text = ""
  33. KeyBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. KeyBox.Parent = KeyFrame
  35.  
  36. local KeyButton = Instance.new("TextButton")
  37. KeyButton.Size = UDim2.new(0.8, 0, 0, 40)
  38. KeyButton.Position = UDim2.new(0.1, 0, 0.6, 0)
  39. KeyButton.Text = "Submit"
  40. KeyButton.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  41. KeyButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  42. KeyButton.Parent = KeyFrame
  43.  
  44. local ErrorLabel = Instance.new("TextLabel")
  45. ErrorLabel.Size = UDim2.new(1, 0, 0, 20)
  46. ErrorLabel.Position = UDim2.new(0, 0, 0.85, 0)
  47. ErrorLabel.Text = ""
  48. ErrorLabel.TextColor3 = Color3.fromRGB(255, 0, 0)
  49. ErrorLabel.BackgroundTransparency = 1
  50. ErrorLabel.Parent = KeyFrame
  51.  
  52. -- Function to check key
  53. KeyButton.MouseButton1Click:Connect(function()
  54. if KeyBox.Text == correctKey then
  55. KeyGui:Destroy()
  56.  
  57. -- Create Main UI
  58. local ScreenGui = Instance.new("ScreenGui")
  59. ScreenGui.Parent = game.CoreGui
  60.  
  61. local Frame = Instance.new("Frame")
  62. Frame.Name = "MainFrame"
  63. Frame.Size = UDim2.new(0, 220, 0, 250)
  64. Frame.Position = UDim2.new(0.4, 0, 0.3, 0)
  65. Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  66. Frame.Parent = ScreenGui
  67.  
  68. local Title = Instance.new("TextLabel")
  69. Title.Size = UDim2.new(1, 0, 0, 30)
  70. Title.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  71. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  72. Title.Text = "rumanthan's hack!!!!"
  73. Title.Font = Enum.Font.SourceSansBold
  74. Title.TextSize = 18
  75. Title.Parent = Frame
  76.  
  77. local ToggleButton = Instance.new("TextButton")
  78. ToggleButton.Size = UDim2.new(0, 100, 0, 30)
  79. ToggleButton.Position = UDim2.new(0.25, 0, 0, -40)
  80. ToggleButton.Text = "Toggle UI"
  81. ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  82. ToggleButton.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  83. ToggleButton.Parent = Frame
  84.  
  85. local CloseButton = Instance.new("TextButton")
  86. CloseButton.Size = UDim2.new(0, 100, 0, 30)
  87. CloseButton.Position = UDim2.new(0.25, 0, 0.85, 0)
  88. CloseButton.Text = "Close UI"
  89. CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  90. CloseButton.BackgroundColor3 = Color3.fromRGB(100, 30, 30)
  91. CloseButton.Parent = Frame
  92.  
  93. local SkyboxButton = Instance.new("TextButton")
  94. SkyboxButton.Size = UDim2.new(0, 180, 0, 40)
  95. SkyboxButton.Position = UDim2.new(0.1, 0, 0.2, 0)
  96. SkyboxButton.Text = "Set Red Skybox"
  97. SkyboxButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  98. SkyboxButton.BackgroundColor3 = Color3.fromRGB(150, 30, 30)
  99. SkyboxButton.Parent = Frame
  100.  
  101. local SpeedButton = Instance.new("TextButton")
  102. SpeedButton.Size = UDim2.new(0, 180, 0, 40)
  103. SpeedButton.Position = UDim2.new(0.1, 0, 0.4, 0)
  104. SpeedButton.Text = "Increase Speed (100)"
  105. SpeedButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  106. SpeedButton.BackgroundColor3 = Color3.fromRGB(30, 150, 30)
  107. SpeedButton.Parent = Frame
  108.  
  109. local SlowButton = Instance.new("TextButton")
  110. SlowButton.Size = UDim2.new(0, 180, 0, 40)
  111. SlowButton.Position = UDim2.new(0.1, 0, 0.6, 0)
  112. SlowButton.Text = "Reduce Speed (10)"
  113. SlowButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  114. SlowButton.BackgroundColor3 = Color3.fromRGB(30, 30, 150)
  115. SlowButton.Parent = Frame
  116.  
  117. -- Button Functions
  118. SkyboxButton.MouseButton1Click:Connect(function()
  119. if not Lighting:FindFirstChild("CustomSkybox") then
  120. local sky = Instance.new("Sky")
  121. sky.Name = "CustomSkybox"
  122. sky.Parent = Lighting
  123. end
  124. local skybox = Lighting.CustomSkybox
  125. skybox.SkyboxBk = "rbxassetid://6070242200"
  126. skybox.SkyboxDn = "rbxassetid://6070242200"
  127. skybox.SkyboxFt = "rbxassetid://6070242200"
  128. skybox.SkyboxLf = "rbxassetid://6070242200"
  129. skybox.SkyboxRt = "rbxassetid://6070242200"
  130. skybox.SkyboxUp = "rbxassetid://6070242200"
  131. end)
  132.  
  133. SpeedButton.MouseButton1Click:Connect(function()
  134. if humanoid then
  135. humanoid.WalkSpeed = 100
  136. end
  137. end)
  138.  
  139. SlowButton.MouseButton1Click:Connect(function()
  140. if humanoid then
  141. humanoid.WalkSpeed = 10
  142. end
  143. end)
  144.  
  145. CloseButton.MouseButton1Click:Connect(function()
  146. ScreenGui:Destroy()
  147. end)
  148.  
  149. ToggleButton.MouseButton1Click:Connect(function()
  150. Frame.Visible = not Frame.Visible
  151. end)
  152. else
  153. ErrorLabel.Text = "Incorrect Password!"
  154. end
  155. end)
Add Comment
Please, Sign In to add comment