Advertisement
AceW0lf_BOt

Roblox Boxing Sim 2 Strength Spy

Aug 17th, 2022 (edited)
732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.02 KB | Gaming | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local Title = Instance.new("TextLabel")
  10. local TextBox = Instance.new("TextBox")
  11. local TextButton = Instance.new("TextButton")
  12. local UICorner = Instance.new("UICorner")
  13. local ImageLabel = Instance.new("ImageLabel")
  14. local UICorner_2 = Instance.new("UICorner")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.Active = true
  23. Frame.BackgroundColor3 = Color3.fromRGB(123, 255, 0)
  24. Frame.Position = UDim2.new(0.699382007, 0, 0.556334853, 0)
  25. Frame.Size = UDim2.new(0, 246, 0, 290)
  26.  
  27. TextLabel.Parent = Frame
  28. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. TextLabel.BackgroundTransparency = 1.000
  30. TextLabel.Position = UDim2.new(0.0900648907, 0, 0.47785145, 0)
  31. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  32. TextLabel.Font = Enum.Font.SourceSans
  33. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. TextLabel.TextScaled = true
  35. TextLabel.TextSize = 14.000
  36. TextLabel.TextWrapped = true
  37.  
  38. Title.Name = "Title"
  39. Title.Parent = Frame
  40. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. Title.BackgroundTransparency = 1.000
  42. Title.Position = UDim2.new(0.0900648907, 0, 0, 0)
  43. Title.Size = UDim2.new(0, 200, 0, 50)
  44. Title.Font = Enum.Font.SourceSans
  45. Title.Text = "Ewave1 Strength Spy"
  46. Title.TextColor3 = Color3.fromRGB(0, 0, 0)
  47. Title.TextScaled = true
  48. Title.TextSize = 14.000
  49. Title.TextWrapped = true
  50.  
  51. TextBox.Parent = Frame
  52. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. TextBox.BackgroundTransparency = 1.000
  54. TextBox.Position = UDim2.new(0.090065062, 0, 0.226923034, 0)
  55. TextBox.Size = UDim2.new(0, 200, 0, 50)
  56. TextBox.Font = Enum.Font.SourceSans
  57. TextBox.Text = "Insert User"
  58. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. TextBox.TextScaled = true
  60. TextBox.TextSize = 14.000
  61. TextBox.TextWrapped = true
  62.  
  63. TextButton.Parent = Frame
  64. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  65. TextButton.BackgroundTransparency = 1.000
  66. TextButton.Position = UDim2.new(0.0900648907, 0, 0.7088328, 0)
  67. TextButton.Size = UDim2.new(0, 200, 0, 50)
  68. TextButton.Font = Enum.Font.SourceSans
  69. TextButton.Text = "Check"
  70. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  71. TextButton.TextScaled = true
  72. TextButton.TextSize = 14.000
  73. TextButton.TextWrapped = true
  74.  
  75. UICorner.CornerRadius = UDim.new(0, 18)
  76. UICorner.Parent = Frame
  77.  
  78. ImageLabel.Parent = Frame
  79. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  80. ImageLabel.BackgroundTransparency = 1.000
  81. ImageLabel.BorderSizePixel = 0
  82. ImageLabel.Position = UDim2.new(0.753697097, 0, 0.791587412, 0)
  83. ImageLabel.Size = UDim2.new(0, 60, 0, 60)
  84. ImageLabel.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
  85.  
  86. UICorner_2.CornerRadius = UDim.new(1, 0)
  87. UICorner_2.Parent = ImageLabel
  88.  
  89. -- Scripts:
  90.  
  91. local function QWRJBD_fake_script() -- TextButton.Script
  92.     local script = Instance.new('Script', TextButton)
  93.  
  94.     script.Parent.MouseButton1Up:Connect(function()
  95.         while true do          
  96.             TextLabel.Text = game.ReplicatedStorage.Data[TextBox.Text].Strength.Value
  97.             wait(.1)
  98.         end
  99.     end)
  100. end
  101. coroutine.wrap(QWRJBD_fake_script)()
  102. local function XJWEM_fake_script() -- ImageLabel.LocalScript
  103.     local script = Instance.new('LocalScript', ImageLabel)
  104.  
  105.     local Plrs = game:GetService("Players")
  106.    
  107.     local plr = Plrs.LocalPlayer
  108.    
  109.     local userId = plr.UserId
  110.     local thumbType = Enum.ThumbnailType.HeadShot
  111.     local thumbSize = Enum.ThumbnailSize.Size60x60
  112.     local content,isReady = Plrs:GetUserThumbnailAsync(userId, thumbType, thumbSize)
  113.    
  114.    
  115.    
  116.     local imageLabel = script.Parent
  117.     imageLabel.Image = content
  118. end
  119. coroutine.wrap(XJWEM_fake_script)()
  120. local function VBNUISV_fake_script() -- ScreenGui.Script
  121.     local script = Instance.new('Script', ScreenGui)
  122.  
  123.     Frame = script.Parent.Frame
  124.     Frame.Draggable = true
  125.     Frame.Active = true
  126.     Frame.Selectable = true
  127. end
  128. coroutine.wrap(VBNUISV_fake_script)()
  129.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement