Advertisement
FreshGamer430

Untitled

Aug 23rd, 2023
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 KB | None | 0 0
  1. local a = game.Players.LocalPlayer.PlayerGui:FindFirstChild("ItemGui")
  2. if a then
  3. a:Destroy()
  4. end
  5.  
  6. local a = Instance.new("ScreenGui")
  7. a.Name = "ItemGui"
  8. a.Parent = game.Players.LocalPlayer.PlayerGui
  9.  
  10. local b = Instance.new("Frame")
  11. b.Name = "MainFrame"
  12. b.BackgroundColor3 = Color3.new(1, 0, 0)
  13. b.BorderSizePixel = 2
  14. b.Position = UDim2.new(0.5, -150, 0.5, -100)
  15. b.Size = UDim2.new(0, 300, 0, 200)
  16. b.Active = true
  17. b.Draggable = true
  18. b.Parent = a
  19.  
  20. local c = Instance.new("TextLabel")
  21. c.Name = "TitleLabel"
  22. c.BackgroundColor3 = Color3.new(1, 1, 1)
  23. c.BorderSizePixel = 0
  24. c.Size = UDim2.new(1, 0, 0, 30)
  25. c.Font = Enum.Font.GothamSemibold
  26. c.Text = "Ronald Fuxcker"
  27. c.TextColor3 = Color3.new(0, 0, 0)
  28. c.TextSize = 20
  29. c.Parent = b
  30.  
  31. local d = Instance.new("TextButton")
  32. d.Name = "ItemEspButton"
  33. d.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. d.BorderSizePixel = 2
  35. d.BorderColor3 = Color3.fromRGB(255, 0, 0)
  36. d.Position = UDim2.new(0.5, -75, 0.3, -15)
  37. d.Size = UDim2.new(0, 150, 0, 30)
  38. d.Font = Enum.Font.GothamSemibold
  39. d.Text = "Item ESP"
  40. d.TextColor3 = Color3.new(0, 0, 0)
  41. d.TextSize = 20
  42. d.Parent = b
  43.  
  44. local e = Instance.new("TextButton")
  45. e.Name = "RonaldEspButton"
  46. e.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  47. e.BorderSizePixel = 2
  48. e.BorderColor3 = Color3.fromRGB(255, 0, 0)
  49. e.Position = UDim2.new(0.5, -75, 0.7, -15)
  50. e.Size = UDim2.new(0, 150, 0, 30)
  51. e.Font = Enum.Font.GothamSemibold
  52. e.Text = "Ronald ESP"
  53. e.TextColor3 = Color3.new(0, 0, 0)
  54. e.TextSize = 20
  55. e.Parent = b
  56.  
  57. local f = Instance.new("TextButton")
  58. f.Name = "OpenButton"
  59. f.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  60. f.BorderSizePixel = 2
  61. f.BorderColor3 = Color3.fromRGB(0, 0, 0)
  62. f.Position = UDim2.new(0.01, 0, 0.5, -15)
  63. f.Size = UDim2.new(0, 100, 0, 30)
  64. f.Font = Enum.Font.GothamSemibold
  65. f.Text = "Open"
  66. f.TextColor3 = Color3.new(0, 0, 0)
  67. f.TextSize = 20
  68. f.Parent = a
  69.  
  70. local g = true
  71. local h = function()
  72. g = not g
  73. b.Visible = g
  74. end
  75.  
  76. local i = function(j )
  77. local k = j:FindFirstChild("ESP")
  78. if not k then
  79. k = Instance.new("BillboardGui")
  80. k.Name = "ESP"
  81. k.AlwaysOnTop = true
  82. k.Size = UDim2.new(0, 100, 0, 30)
  83. k.StudsOffset = Vector3.new(0, 2, 0)
  84. k.Parent = j
  85.  
  86. local l = Instance.new("TextLabel")
  87. l.BackgroundTransparency = 1
  88. l.Size = UDim2.new(1, 0, 1, 0)
  89. l.Font = Enum.Font.GothamSemibold
  90. l.Text = "Item"
  91. l.TextScaled = true
  92. l.Parent = k
  93.  
  94. local m = Instance.new("LocalScript")
  95. m.Source = [[
  96. local n = script.Parent.Text
  97. local o = {Color3.new(1, 0, 0), Color3.new(1, 1, 1), Color3.new(0, 0, 1), Color3.new(1, 1, 0), Color3.new(0, 0.5, 0.5), Color3.new(1, 0.5, 0)}
  98. local p = 1
  99.  
  100. while true do
  101. n.TextColor3 = o[p]
  102. p = p % #o + 1
  103. wait(0.1)
  104. end
  105. ]]
  106. m.Parent = k
  107. end
  108. end
  109.  
  110. local q = function(r)
  111. local s = r.Name:lower()
  112. local t = {"key", "red", "white", "blue", "yellow", "teal", "orange", "wrench"}
  113.  
  114. for _, u in ipairs(t) do
  115. if string.find(s, u) then
  116. i(r)
  117. break
  118. end
  119. end
  120. end
  121.  
  122. d.MouseButton1Click:Connect(function()
  123. for _, v in ipairs(workspace:GetDescendants()) do
  124. if v:IsA("BasePart") then
  125. q(v)
  126. end
  127. end
  128. end)
  129.  
  130. e.MouseButton1Click:Connect(function()
  131. local w = "https://pastebin.com/raw/FQRGKL5d"
  132.  
  133. local x = function(y)
  134. local z = game:HttpGetAsync(y)
  135. local A = loadstring(z)
  136. if A then
  137. pcall(A)
  138. end
  139. end
  140.  
  141. x(w)
  142.  
  143. if C then
  144. C = false
  145. print("Ronald ESP disabled")
  146. else
  147. C = true
  148. print("Ronald ESP enabled")
  149. end
  150. end)
  151.  
  152. f.MouseButton1Click:Connect(h)
  153.  
  154. local B = Instance.new("ScreenGui")
  155. B.Name = "NotificationGui"
  156. B.Parent = game.Players.LocalPlayer.PlayerGui
  157.  
  158. local D = Instance.new("TextBox")
  159. D.Name = "NotificationText"
  160. D.BackgroundColor3 = Color3.new(1, 1, 1)
  161. D.BackgroundTransparency = 0.5
  162. D.Size = UDim2.new(0, 200, 0, 50)
  163. D.Position = UDim2.new(0.5, -100, 0.5, -25)
  164. D.Font = Enum.Font.GothamSemibold
  165. D.Text = "Made by ReaperGaming"
  166. D.TextColor3 = Color3.new(0, 0, 0)
  167. D.TextSize = 20
  168. D.Parent = B
  169.  
  170. wait(3)
  171. B:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement