C00lkidd27

Untitled

Nov 23rd, 2024
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.20 KB | None | 0 0
  1. -- UI Loader Script
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local ExecuteButton = Instance.new("TextButton")
  5. local ClearButton = Instance.new("TextButton")
  6. local InjectButton = Instance.new("TextButton")
  7. local TextBox = Instance.new("TextBox")
  8. local TextLabel = Instance.new("TextLabel")
  9.  
  10. -- Properties for ScreenGui
  11. ScreenGui.Name = "ExecutorUI"
  12. ScreenGui.Parent = game:GetService("CoreGui")
  13.  
  14. -- Frame properties
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  17. Frame.BorderSizePixel = 0
  18. Frame.Position = UDim2.new(0.5, -200, 0.5, -200)
  19. Frame.Size = UDim2.new(0, 400, 0, 400)
  20. Frame.Visible = true
  21. Frame.Active = true
  22. Frame.Draggable = true
  23.  
  24. -- TextLabel Properties (Rip_BinosBey Executor with rainbow and glow effect)
  25. TextLabel.Parent = Frame
  26. TextLabel.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  27. TextLabel.Position = UDim2.new(0.1, 0, 0.05, 0)
  28. TextLabel.Size = UDim2.new(0.8, 0, 0.2, 0)
  29. TextLabel.Font = Enum.Font.SourceSansBold
  30. TextLabel.Text = "Rip_BinosBey Executor"
  31. TextLabel.TextColor3 = Color3.fromRGB(255, 0, 0)
  32. TextLabel.TextSize = 40
  33. TextLabel.TextWrapped = true
  34.  
  35. -- ExecuteButton properties
  36. ExecuteButton.Parent = Frame
  37. ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 128, 255)
  38. ExecuteButton.Position = UDim2.new(0.05, 0, 0.75, 0)
  39. ExecuteButton.Size = UDim2.new(0.425, 0, 0.1, 0)
  40. ExecuteButton.Font = Enum.Font.SourceSans
  41. ExecuteButton.Text = "Execute"
  42. ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  43. ExecuteButton.TextSize = 18
  44.  
  45. -- ClearButton properties
  46. ClearButton.Parent = Frame
  47. ClearButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  48. ClearButton.Position = UDim2.new(0.525, 0, 0.75, 0)
  49. ClearButton.Size = UDim2.new(0.425, 0, 0.1, 0)
  50. ClearButton.Font = Enum.Font.SourceSans
  51. ClearButton.Text = "Clear"
  52. ClearButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  53. ClearButton.TextSize = 18
  54.  
  55. -- InjectButton properties
  56. InjectButton.Parent = Frame
  57. InjectButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  58. InjectButton.Position = UDim2.new(0.05, 0, 0.85, 0)
  59. InjectButton.Size = UDim2.new(0.9, 0, 0.1, 0)
  60. InjectButton.Font = Enum.Font.SourceSans
  61. InjectButton.Text = "Inject"
  62. InjectButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  63. InjectButton.TextSize = 18
  64.  
  65. -- TextBox properties
  66. TextBox.Parent = Frame
  67. TextBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  68. TextBox.Position = UDim2.new(0.05, 0, 0.3, 0)
  69. TextBox.Size = UDim2.new(0.9, 0, 0.4, 0)
  70. TextBox.Font = Enum.Font.SourceSans
  71. TextBox.PlaceholderText = "Enter script here..."
  72. TextBox.Text = ""
  73. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. TextBox.TextSize = 18
  75. TextBox.TextWrapped = true
  76. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  77. TextBox.ClearTextOnFocus = false
  78. TextBox.MultiLine = true
  79.  
  80. -- Functions
  81. local injected = false
  82.  
  83. local function ExecuteScript()
  84. if injected then
  85. local scriptText = TextBox.Text
  86. if scriptText and scriptText ~= "" then
  87. loadstring(scriptText)()
  88. end
  89. else
  90. warn("You need to inject first!")
  91. end
  92. end
  93.  
  94. local function ClearText()
  95. TextBox.Text = ""
  96. end
  97.  
  98. local function Inject()
  99. injected = true
  100. print("Injected!")
  101. end
  102.  
  103. ExecuteButton.MouseButton1Click:Connect(ExecuteScript)
  104. ClearButton.MouseButton1Click:Connect(ClearText)
  105. InjectButton.MouseButton1Click:Connect(Inject)
  106.  
  107. -- Toggle UI Visibility with RightShift
  108. local UIS = game:GetService("UserInputService")
  109. local function onKeyPress(input)
  110. if input.KeyCode == Enum.KeyCode.RightShift then
  111. Frame.Visible = not Frame.Visible
  112. end
  113. end
  114.  
  115. UIS.InputBegan:Connect(onKeyPress)
  116.  
  117. -- Rainbow Effect (Color Cycling for TextLabel)
  118. local TweenService = game:GetService("TweenService")
  119.  
  120. local function createRainbowEffect(label)
  121. local rainbowColors = {
  122. Color3.fromRGB(255, 0, 0), -- Red
  123. Color3.fromRGB(255, 165, 0), -- Orange
  124. Color3.fromRGB(255, 255, 0), -- Yellow
  125. Color3.fromRGB(0, 255, 0), -- Green
  126. Color3.fromRGB(0, 0, 255), -- Blue
  127. Color3.fromRGB(75, 0, 130), -- Indigo
  128. Color3.fromRGB(238, 130, 238) -- Violet
  129. }
  130.  
  131. local currentIndex = 1
  132. while true do
  133. local nextColor = rainbowColors[currentIndex]
  134. local tween = TweenService:Create(label, TweenInfo.new(0.5), {TextColor3 = nextColor})
  135. tween:Play()
  136. currentIndex = currentIndex % #rainbowColors + 1
  137. wait(0.5)
  138. end
  139. end
  140.  
  141. -- Glow Effect for TextLabel
  142. local function createGlowEffect(label)
  143. local glow = Instance.new("TextLabel")
  144. glow.Name = "Glow"
  145. glow.Parent = label.Parent
  146. glow.Size = label.Size
  147. glow.Position = label.Position
  148. glow.Text = label.Text
  149. glow.TextColor3 = label.TextColor3
  150. glow.TextSize = label.TextSize
  151. glow.Font = label.Font
  152. glow.BackgroundTransparency = 1
  153. glow.TextTransparency = 0.5
  154. glow.ZIndex = label.ZIndex - 1
  155. glow.TextStrokeTransparency = 0.7
  156.  
  157. -- Sync glow color with the main label
  158. spawn(function()
  159. while true do
  160. glow.TextColor3 = label.TextColor3
  161. wait(0.1)
  162. end
  163. end)
  164. end
  165.  
  166. -- Apply Effects to TextLabel
  167. createRainbowEffect(TextLabel)
  168. createGlowEffect(TextLabel)
  169.  
Tags: Executor
Advertisement
Add Comment
Please, Sign In to add comment