Advertisement
PlanDalcor

strucid gui

Jan 13th, 2023
1,879
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 47.95 KB | None | 0 0
  1. local Strucid = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local BRHitboxes = Instance.new("TextButton")
  4. local BanBypass = Instance.new("TextButton")
  5. local Close = Instance.new("TextButton")
  6. local StrucidGUI = Instance.new("TextButton")
  7. local Credits = Instance.new("TextLabel")
  8. local GUIDisclaimer = Instance.new("TextLabel")
  9. local SynapseDisclaimer = Instance.new("TextLabel")
  10. local Title = Instance.new("TextLabel")
  11. local OpenFrame = Instance.new("Frame")
  12. local Open = Instance.new("TextButton")
  13. --Properties:
  14.  
  15. Main.Visible = false
  16. OpenFrame.Visible = true
  17.  
  18. Strucid.Name = "Strucid"
  19. Strucid.Parent = game.CoreGui
  20. Strucid.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. Main.Name = "Main"
  23. Main.Parent = Strucid
  24. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  25. Main.Position = UDim2.new(0.332250893, 0, 0.405157983, 0)
  26. Main.Size = UDim2.new(0, 433, 0, 186)
  27. Main.Active = true
  28. Main.Draggable = true
  29.  
  30. BRHitboxes.Name = "BRHitboxes"
  31. BRHitboxes.Parent = Main
  32. BRHitboxes.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  33. BRHitboxes.Position = UDim2.new(0.418013901, 0, 0.393955529, 0)
  34. BRHitboxes.Size = UDim2.new(0, 72, 0, 24)
  35. BRHitboxes.Font = Enum.Font.SourceSans
  36. BRHitboxes.Text = "Hitboxes"
  37. BRHitboxes.TextColor3 = Color3.new(0, 0, 0)
  38. BRHitboxes.TextSize = 14
  39. BRHitboxes.MouseButton1Click:connect(function()
  40. _G.HeadSize = 20
  41. _G.Disabled = true
  42. end)
  43.  
  44. game:GetService('RunService').RenderStepped:connect(function()
  45. if _G.Disabled then
  46. for i,v in next, game:GetService('Players'):GetPlayers() do
  47. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  48. pcall(function()
  49. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  50. v.Character.HumanoidRootPart.Transparency = 0.7
  51. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  52. v.Character.HumanoidRootPart.Material = "Neon"
  53. v.Character.HumanoidRootPart.CanCollide = false
  54. end)
  55. end
  56. end
  57. end
  58. end)
  59.  
  60. BanBypass.Name = "BanBypass"
  61. BanBypass.Parent = Main
  62. BanBypass.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  63. BanBypass.Position = UDim2.new(0.748267949, 0, 0.394219577, 0)
  64. BanBypass.Size = UDim2.new(0, 72, 0, 24)
  65. BanBypass.Font = Enum.Font.SourceSans
  66. BanBypass.Text = "Aimbot"
  67. BanBypass.TextColor3 = Color3.new(0, 0, 0)
  68. BanBypass.TextSize = 14
  69. BanBypass.MouseButton1Click:connect(function()
  70. X_CHANGE = 0.1 --The change in camera angle on the X axis upon moving 1 pixel on 0.36 sensitivity.
  71. Y_CHANGE = 0.13 --The change in camera angle on the Y axis upon moving 1 pixel on 0.36 sensitivity.
  72. MOUSE_OFFSET = Vector2.new(0, 0) --The offset (in pixels) of where the script should think the mouse is.
  73. USE_RIGHT_CLICK = true --Whether or not to still use right click for locking on.
  74. USE_LEFT_CLICK = false --Whether or not to use left click for locking on.
  75. AIM_KEY = Enum.KeyCode.E --Enum.Keycode for the key to press when you want to lock onto someone.
  76. NO_HUMANOIDS = false --Whether or not to check for Humanoids in the characters. For example, Phantom Forces doesn't use humanoids. (The script automatically sets NO_HUMANOIDS to true for Phantom Forces though.)
  77. TOGGLE_VIS_KEY = nil --Enum.KeyCode for the key to press to toggle the full visibility of the GUI.
  78.  
  79. loadstring(game:HttpGet("https://raw.githubusercontent.com/angeld23/raw-text-host/master/Temporal.lua", true))()
  80.  
  81. end)
  82.  
  83. Close.Name = "Close"
  84. Close.Parent = Main
  85. Close.BackgroundColor3 = Color3.new(0.494118, 0.105882, 0.105882)
  86. Close.Position = UDim2.new(0.86605078, 0, -0.00241581094, 0)
  87. Close.Size = UDim2.new(0, 58, 0, 50)
  88. Close.Font = Enum.Font.SciFi
  89. Close.Text = "X"
  90. Close.TextColor3 = Color3.new(0, 0, 0)
  91. Close.TextSize = 24
  92. Close.MouseButton1Click:connect(function()
  93. Main.Visible = false
  94. OpenFrame.Visible = true
  95. end)
  96.  
  97. StrucidGUI.Name = "ESP"
  98. StrucidGUI.Parent = Main
  99. StrucidGUI.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  100. StrucidGUI.Position = UDim2.new(0.0854503885, 0, 0.39108026, 0)
  101. StrucidGUI.Size = UDim2.new(0, 72, 0, 24)
  102. StrucidGUI.Font = Enum.Font.SourceSans
  103. StrucidGUI.Text = "ESP"
  104. StrucidGUI.TextColor3 = Color3.new(0, 0, 0)
  105. StrucidGUI.TextSize = 14
  106. StrucidGUI.MouseButton1Click:connect(function()
  107. local custom_theme = {} --soon
  108.  
  109. local function CreateInstance(cls,props)
  110. local inst = Instance.new(cls)
  111. for i,v in pairs(props) do
  112. inst[i] = v
  113. end
  114. return inst
  115. end
  116.  
  117. local age1 = CreateInstance('ScreenGui',{DisplayOrder=0,Enabled=true,ResetOnSpawn=true,Name='age1', Parent=game.CoreGui})
  118. local p_visuals = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=2,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 50, 0, 60),Rotation=0,Selectable=false,Size=UDim2.new(0, 200, 0, 254),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'p_visuals',Parent = age1})
  119. local UIListLayout = CreateInstance('UIListLayout', {Padding = UDim.new(0, 1), FillDirection = Enum.FillDirection.Vertical, HorizontalAlignment = Enum.HorizontalAlignment.Left, SortOrder = Enum.SortOrder.LayoutOrder, VerticalAlignment = Enum.VerticalAlignment.Top, Name = 'UIListLayout', Parent = p_visuals })
  120. local title1 = CreateInstance('TextLabel',{Font=Enum.Font.GothamBlack,FontSize=Enum.FontSize.Size18,Text='Player visuals',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=18,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, 24),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title1',Parent = p_visuals})
  121. local b_b = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Bounding box',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_b',Parent = p_visuals})
  122. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_b})
  123. local b_f = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Fill alpha',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_f',Parent = p_visuals})
  124. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_f})
  125. local b_rt = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Render team',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_rt',Parent = p_visuals})
  126. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_rt})
  127. local b_tc = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Use TeamColor',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_tc',Parent = p_visuals})
  128. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_tc})
  129. local b_sn = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Show name',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_sn',Parent = p_visuals})
  130. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_sn})
  131. local b_sd = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Show distance',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_sd',Parent = p_visuals})
  132. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_sd})
  133. local b_sh = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Show health',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_sh',Parent = p_visuals})
  134. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='OFF',TextColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_sh})
  135. local b_ht = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Health type',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_ht',Parent = p_visuals})
  136. local v = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Text',TextColor3=Color3.new(0, 1, 1),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_ht})
  137. local b_f_t = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Fill transparency',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_f_t',Parent = p_visuals})
  138. local v = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,Text='1',TextColor3=Color3.new(0, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 18, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='v',Parent = b_f_t})
  139. local title1_2 = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='ESP',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=18,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title1_2',Parent = p_visuals})
  140. local b_ct = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Team color',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_ct',Parent = p_visuals})
  141. local ct_b = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(0, 0, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0, 0, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ct_b',Parent = b_ct})
  142. local ct_g = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(0, 1, 0), PlaceholderText='', PlaceholderColor3=Color3.new(0, 1, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -29, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ct_g',Parent = b_ct})
  143. local ct_r = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(1, 0, 0), PlaceholderText='', PlaceholderColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -56, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ct_r',Parent = b_ct})
  144. local b_ce = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size18,Text='Enemy color',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=16,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 0, 0.498039),BackgroundTransparency=1,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, -2, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='b_ce',Parent = p_visuals})
  145. local ce_b = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(0, 0, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0, 0, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -2, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ce_b',Parent = b_ce})
  146. local ce_g = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(0, 1, 0), PlaceholderText='', PlaceholderColor3=Color3.new(0, 1, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -29, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ce_g',Parent = b_ce})
  147. local ce_r = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size14,MultiLine=false,Text='',TextColor3=Color3.new(1, 0, 0), PlaceholderText='', PlaceholderColor3=Color3.new(1, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.121569, 0.12549, 0.172549),BackgroundTransparency=0,BorderColor3=Color3.new(1, 0, 0.498039),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -56, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 27, 0, 14),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='ce_r',Parent = b_ce})
  148. local watermark = CreateInstance('TextLabel',{Font=Enum.Font.Code,FontSize=Enum.FontSize.Size14,Text='lamehaxx v0.01',TextColor3=Color3.new(0, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Top,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 2, 0, -34),Rotation=0,Selectable=false,Size=UDim2.new(0, 200, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=20,Name='watermark',Parent = age1})
  149. local watermark1 = CreateInstance('TextLabel',{Font=Enum.Font.Code,FontSize=Enum.FontSize.Size14,Text='lamehaxx v0.01',TextColor3=Color3.new(1, 0, 0.498039),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Top,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, -2, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 200, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=20,Name='watermark1',Parent = watermark})
  150. p_visuals.Draggable = true
  151.  
  152. title1.LayoutOrder = 0 title1_2.LayoutOrder = 1
  153. b_b.LayoutOrder = 1 b_f.LayoutOrder = 2 b_f_t.LayoutOrder = 3 b_sd.LayoutOrder = 4 b_sn.LayoutOrder = 5 b_sh.LayoutOrder = 6 b_ht.LayoutOrder = 7 b_rt.LayoutOrder = 8 b_tc.LayoutOrder = 9 b_ct.LayoutOrder = 10 b_ce.LayoutOrder = 11
  154.  
  155. local localplayer = game:GetService"Players".LocalPlayer
  156. local uis = game:GetService"UserInputService"
  157.  
  158. local cheats = {
  159. b_b = false;
  160. b_f = false;
  161. b_f_t = 1;
  162. b_sd = false;
  163. b_sn = false;
  164. b_sh = false;
  165. b_ht = "Text";
  166. b_rt = false;
  167. b_tc = false;
  168. }
  169.  
  170. local cheatsf = Instance.new("Folder", game.CoreGui) cheatsf.Name = "cheats"
  171. local espf = Instance.new("Folder", cheatsf) espf.Name = "esp"
  172.  
  173. function addEsp(player)
  174. local bbg = Instance.new("BillboardGui", espf)
  175. bbg.Name = player.Name
  176. bbg.AlwaysOnTop = true
  177. bbg.Size = UDim2.new(4,0,5.4,0)
  178. bbg.ClipsDescendants = false
  179.  
  180. local outlines = Instance.new("Frame", bbg)
  181. outlines.Size = UDim2.new(1,0,1,0)
  182. outlines.BorderSizePixel = 0
  183. outlines.BackgroundTransparency = 1
  184. local left = Instance.new("Frame", outlines)
  185. left.BorderSizePixel = 0
  186. left.Size = UDim2.new(0,1,1,0)
  187. local right = left:Clone()
  188. right.Parent = outlines
  189. right.Size = UDim2.new(0,-1,1,0)
  190. right.Position = UDim2.new(1,0,0,0)
  191. local up = left:Clone()
  192. up.Parent = outlines
  193. up.Size = UDim2.new(1,0,0,1)
  194. local down = left:Clone()
  195. down.Parent = outlines
  196. down.Size = UDim2.new(1,0,0,-1)
  197. down.Position = UDim2.new(0,0,1,0)
  198.  
  199. local info = Instance.new("BillboardGui", bbg)
  200. info.Name = "info"
  201. info.Size = UDim2.new(3,0,0,54)
  202. info.StudsOffset = Vector3.new(3.6,-3,0)
  203. info.AlwaysOnTop = true
  204. info.ClipsDescendants = false
  205. local namelabel = Instance.new("TextLabel", info)
  206. namelabel.Name = "namelabel"
  207. namelabel.BackgroundTransparency = 1
  208. namelabel.TextStrokeTransparency = 0
  209. namelabel.TextXAlignment = Enum.TextXAlignment.Left
  210. namelabel.Size = UDim2.new(0,100,0,18)
  211. namelabel.Position = UDim2.new(0,0,0,0)
  212. namelabel.Text = player.Name
  213. local distancel = Instance.new("TextLabel", info)
  214. distancel.Name = "distancelabel"
  215. distancel.BackgroundTransparency = 1
  216. distancel.TextStrokeTransparency = 0
  217. distancel.TextXAlignment = Enum.TextXAlignment.Left
  218. distancel.Size = UDim2.new(0,100,0,18)
  219. distancel.Position = UDim2.new(0,0,0,18)
  220. local healthl = Instance.new("TextLabel", info)
  221. healthl.Name = "healthlabel"
  222. healthl.BackgroundTransparency = 1
  223. healthl.TextStrokeTransparency = 0
  224. healthl.TextXAlignment = Enum.TextXAlignment.Left
  225. healthl.Size = UDim2.new(0,100,0,18)
  226. healthl.Position = UDim2.new(0,0,0,36)
  227.  
  228. local uill = Instance.new("UIListLayout", info)
  229.  
  230. local forhealth = Instance.new("BillboardGui", bbg)
  231. forhealth.Name = "forhealth"
  232. forhealth.Size = UDim2.new(5,0,6,0)
  233. forhealth.AlwaysOnTop = true
  234. forhealth.ClipsDescendants = false
  235.  
  236. local healthbar = Instance.new("Frame", forhealth)
  237. healthbar.Name = "healthbar"
  238. healthbar.BackgroundColor3 = Color3.fromRGB(40,40,40)
  239. healthbar.BorderColor3 = Color3.fromRGB(0,0,0)
  240. healthbar.Size = UDim2.new(0.04,0,0.9,0)
  241. healthbar.Position = UDim2.new(0,0,0.05,0)
  242. local bar = Instance.new("Frame", healthbar)
  243. bar.Name = "bar"
  244. bar.BorderSizePixel = 0
  245. bar.BackgroundColor3 = Color3.fromRGB(94,255,69)
  246. bar.AnchorPoint = Vector2.new(0,1)
  247. bar.Position = UDim2.new(0,0,1,0)
  248. bar.Size = UDim2.new(1,0,1,0)
  249.  
  250. local co = coroutine.create(function()
  251. while wait(0.1) do
  252. if (player.Character and player.Character:FindFirstChild"HumanoidRootPart") then
  253. bbg.Adornee = player.Character.HumanoidRootPart
  254. info.Adornee = player.Character.HumanoidRootPart
  255. forhealth.Adornee = player.Character.HumanoidRootPart
  256.  
  257. if (player.Team ~= localplayer.Team) then
  258. bbg.Enabled = true
  259. info.Enabled = true
  260. forhealth.Enabled = true
  261. end
  262. if player.Character:FindFirstChild("ForceField") then
  263. outlines.BackgroundTransparency = 0.4
  264. left.BackgroundTransparency = 0.4
  265. right.BackgroundTransparency = 0.4
  266. up.BackgroundTransparency = 0.4
  267. down.BackgroundTransparency = 0.4
  268. healthl.TextTransparency = 0.4
  269. healthl.TextStrokeTransparency = 0.8
  270. distancel.TextTransparency = 0.4
  271. distancel.TextStrokeTransparency = 0.8
  272. namelabel.TextTransparency = 0.4
  273. namelabel.TextStrokeTransparency = 0.8
  274. bar.BackgroundTransparency = 0.4
  275. healthbar.BackgroundTransparency = 0.8
  276. else
  277. outlines.BackgroundTransparency = 0
  278. left.BackgroundTransparency = 0
  279. right.BackgroundTransparency = 0
  280. up.BackgroundTransparency = 0
  281. down.BackgroundTransparency = 0
  282. healthl.TextTransparency = 0
  283. healthl.TextStrokeTransparency = 0
  284. distancel.TextTransparency = 0
  285. distancel.TextStrokeTransparency = 0
  286. namelabel.TextTransparency = 0
  287. namelabel.TextStrokeTransparency = 0
  288. bar.BackgroundTransparency = 0
  289. healthbar.BackgroundTransparency = 0
  290. end
  291. if cheats.b_b == true then
  292. outlines.Visible = true
  293. else
  294. outlines.Visible = false
  295. end
  296. if cheats.b_f == true then
  297. if player.Character:FindFirstChild("ForceField") then
  298. outlines.BackgroundTransparency = 0.9
  299. else
  300. outlines.BackgroundTransparency = cheats.b_f_t
  301. end
  302. else
  303. outlines.BackgroundTransparency = 1
  304. end
  305. if cheats.b_sh == true then
  306. if (player.Character:FindFirstChild"Humanoid") then
  307. healthl.Text = "Health: "..math.floor(player.Character:FindFirstChild"Humanoid".Health)
  308. healthbar.bar.Size = UDim2.new(1,0,player.Character:FindFirstChild"Humanoid".Health/player.Character:FindFirstChild"Humanoid".MaxHealth,0)
  309. end
  310. if cheats.b_ht == "Text" then
  311. healthbar.Visible = false
  312. healthl.Visible = true
  313. end
  314. if cheats.b_ht == "Bar" then
  315. healthl.Visible = false
  316. healthbar.Visible = true
  317. end
  318. if cheats.b_ht == "Both" then
  319. healthl.Visible = true
  320. healthbar.Visible = true
  321. end
  322. else
  323. healthl.Visible = false
  324. healthbar.Visible = false
  325. end
  326. if cheats.b_sn then
  327. namelabel.Visible = true
  328. else
  329. namelabel.Visible = false
  330. end
  331. if cheats.b_sd == true then
  332. distancel.Visible = true
  333. if (localplayer.Character and localplayer.Character:FindFirstChild"HumanoidRootPart") then
  334. distancel.Text = "Distance: "..math.floor(0.5+(localplayer.Character:FindFirstChild"HumanoidRootPart".Position - player.Character:FindFirstChild"HumanoidRootPart".Position).magnitude)
  335. end
  336. else
  337. distancel.Visible = false
  338. end
  339. if cheats.b_rt == true then
  340. if (player.Team == localplayer.Team) then
  341. bbg.Enabled = true
  342. info.Enabled = true
  343. forhealth.Enabled = true
  344. end
  345. else
  346. if (player.Team == localplayer.Team) then
  347. bbg.Enabled = false
  348. info.Enabled = false
  349. forhealth.Enabled = false
  350. end
  351. end
  352. if cheats.b_tc == true then
  353. outlines.BackgroundColor3 = player.TeamColor.Color
  354. left.BackgroundColor3 = player.TeamColor.Color
  355. right.BackgroundColor3 = player.TeamColor.Color
  356. up.BackgroundColor3 = player.TeamColor.Color
  357. down.BackgroundColor3 = player.TeamColor.Color
  358. healthl.TextColor3 = player.TeamColor.Color
  359. distancel.TextColor3 = player.TeamColor.Color
  360. namelabel.TextColor3 = player.TeamColor.Color
  361. else
  362. if (player.Team == localplayer.Team) then
  363. outlines.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  364. left.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  365. right.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  366. up.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  367. down.BackgroundColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  368. healthl.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  369. distancel.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  370. namelabel.TextColor3 = Color3.fromRGB(ct_r.Text, ct_g.Text, ct_b.Text)
  371. else
  372. outlines.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  373. left.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  374. right.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  375. up.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  376. down.BackgroundColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  377. healthl.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  378. distancel.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  379. namelabel.TextColor3 = Color3.fromRGB(ce_r.Text, ce_g.Text, ce_b.Text)
  380. end
  381. end
  382. end
  383. if not (game:GetService"Players":FindFirstChild(player.Name)) then
  384. print(player.Name.." has left. Clearing esp.")
  385. espf:FindFirstChild(player.Name):Destroy()
  386. coroutine.yield()
  387. end
  388. end
  389. end)
  390. coroutine.resume(co)
  391. end
  392.  
  393. --main
  394. do
  395. wait(2)
  396. --menu buttons
  397. for _,button in pairs(age1:GetDescendants()) do
  398. if button:IsA"TextButton" then
  399. button.MouseButton1Click:connect(function()
  400. if button.Name == "b_f_t" then
  401. if cheats.b_f_t >= 0 then
  402. cheats.b_f_t = cheats.b_f_t+0.1
  403. if cheats.b_f_t > 1 then
  404. cheats.b_f_t = 0
  405. end
  406. end
  407. button.v.Text = cheats.b_f_t
  408. elseif button.Name == "b_ht" then
  409. if cheats.b_ht == "Text" then
  410. cheats.b_ht = "Bar"
  411. elseif cheats.b_ht == "Bar" then
  412. cheats.b_ht = "Both"
  413. else
  414. cheats.b_ht = "Text"
  415. end
  416. button.v.Text = cheats.b_ht
  417. else
  418. if cheats[button.Name] == true then
  419. cheats[button.Name] = false
  420. button.v.Text = "OFF"
  421. button.v.TextColor3 = Color3.fromRGB(255,0,0)
  422. else
  423. cheats[button.Name] = true
  424. button.v.Text = "ON"
  425. button.v.TextColor3 = Color3.fromRGB(0,255,0)
  426. end
  427. end
  428. end)
  429. end
  430. end
  431.  
  432. --initial player addition
  433. for _,v in pairs(game:GetService("Players"):GetChildren()) do
  434. if not (v.Name == localplayer.Name) then
  435. if not (espf:FindFirstChild(v.Name)) then
  436. addEsp(v)
  437. end
  438. end
  439. end
  440.  
  441. --open/close gui
  442. game:GetService("UserInputService").InputBegan:connect(function(input, gameProcessed)
  443. if input.KeyCode == Enum.KeyCode.KeypadOne then
  444. if not gameProcessed then
  445. age1.Enabled = not age1.Enabled
  446. end
  447. end
  448. end)
  449.  
  450. --auto-update
  451. while wait(10) do
  452. for _,v in pairs(game:GetService("Players"):GetChildren()) do
  453. if not (v.Name == localplayer.Name) then
  454. if not (espf:FindFirstChild(v.Name)) then
  455. addEsp(v)
  456. end
  457. end
  458. end
  459. end
  460. end
  461. end)
  462.  
  463. Credits.Name = "Credits"
  464. Credits.Parent = Main
  465. Credits.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  466. Credits.Position = UDim2.new(0, 0, 0.767640471, 0)
  467. Credits.Size = UDim2.new(0, 433, 0, 24)
  468. Credits.Font = Enum.Font.SourceSans
  469. Credits.Text = "Made by CoDeXHackPlayz And YT : CoDeXHackPlayz"
  470. Credits.TextColor3 = Color3.new(0, 0, 0)
  471. Credits.TextSize = 14
  472.  
  473. GUIDisclaimer.Name = "GUIDisclaimer"
  474. GUIDisclaimer.Parent = Main
  475. GUIDisclaimer.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  476. GUIDisclaimer.Position = UDim2.new(0, 0, 0.641337335, 0)
  477. GUIDisclaimer.Size = UDim2.new(0, 433, 0, 24)
  478. GUIDisclaimer.Font = Enum.Font.SourceSans
  479. GUIDisclaimer.Text = "The script labeled \"Strucid GUI\" By CoDeX Gui!"
  480. GUIDisclaimer.TextColor3 = Color3.new(0, 0, 0)
  481. GUIDisclaimer.TextSize = 14
  482.  
  483. SynapseDisclaimer.Name = "SynapseDisclaimer"
  484. SynapseDisclaimer.Parent = Main
  485. SynapseDisclaimer.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  486. SynapseDisclaimer.Position = UDim2.new(0, 0, 0.902954459, 0)
  487. SynapseDisclaimer.Size = UDim2.new(0, 433, 0, 24)
  488. SynapseDisclaimer.Font = Enum.Font.SourceSans
  489. SynapseDisclaimer.Text = "Some scripts may not work without Synapse X!"
  490. SynapseDisclaimer.TextColor3 = Color3.new(0, 0, 0)
  491. SynapseDisclaimer.TextSize = 14
  492.  
  493. Title.Name = "Title"
  494. Title.Parent = Main
  495. Title.BackgroundColor3 = Color3.new(0.54902, 0, 0.54902)
  496. Title.Position = UDim2.new(0, 0, -0.00439732056, 0)
  497. Title.Size = UDim2.new(0, 375, 0, 50)
  498. Title.Font = Enum.Font.SciFi
  499. Title.Text = "Strucid GUI"
  500. Title.TextColor3 = Color3.new(0, 0, 0)
  501. Title.TextSize = 48
  502. Title.Draggable = true
  503.  
  504. OpenFrame.Name = "OpenFrame"
  505. OpenFrame.Parent = Strucid
  506. OpenFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  507. OpenFrame.Position = UDim2.new(-0.00042281326, 0, 0.508724153, 0)
  508. OpenFrame.Size = UDim2.new(0, 130, 0, 39)
  509.  
  510. Open.Name = "Open"
  511. Open.Parent = OpenFrame
  512. Open.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  513. Open.Position = UDim2.new(-0.00819778442, 0, -0.0223894119, 0)
  514. Open.Size = UDim2.new(0, 131, 0, 39)
  515. Open.Font = Enum.Font.SciFi
  516. Open.Text = "Open"
  517. Open.TextColor3 = Color3.new(0, 0, 0)
  518. Open.TextSize = 24
  519. Open.MouseButton1Click:connect(function()
  520. Main.Visible = true
  521. OpenFrame.Visible = false
  522. end)
  523. -- Scripts:
  524. function SCRIPT_MEDM71_FAKESCRIPT() -- Close.LocalScript
  525. local script = Instance.new('LocalScript')
  526. script.Parent = Close
  527. script.Parent.MouseButton1Click:Connect(function()
  528. game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.Visible = false
  529. end)
  530.  
  531.  
  532. end
  533. coroutine.resume(coroutine.create(SCRIPT_MEDM71_FAKESCRIPT))
  534. function SCRIPT_TOZW80_FAKESCRIPT() -- Main.LocalScript
  535. local script = Instance.new('LocalScript')
  536. script.Parent = Main
  537. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  538.  
  539. counter = 0
  540.  
  541. while wait(0.1)do
  542. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  543.  
  544. counter = counter + 0.01
  545. end
  546.  
  547.  
  548.  
  549.  
  550. end
  551. coroutine.resume(coroutine.create(SCRIPT_TOZW80_FAKESCRIPT))
  552. function SCRIPT_BGEC88_FAKESCRIPT() -- Open.LocalScript
  553. local script = Instance.new('LocalScript')
  554. script.Parent = Open
  555. script.Parent.MouseButton1Click:Connect(function()
  556. game.Players.LocalPlayer.PlayerGui.ScreenGui.Frame.Visible = true
  557. end)
  558.  
  559. end
  560. coroutine.resume(coroutine.create(SCRIPT_BGEC88_FAKESCRIPT))
  561. function SCRIPT_ZOLF79_FAKESCRIPT() -- Open.LocalScript
  562. local script = Instance.new('LocalScript')
  563. script.Parent = Open
  564. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  565.  
  566. counter = 0
  567.  
  568. while wait(0.1)do
  569. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  570.  
  571. counter = counter + 0.01
  572. end
  573.  
  574.  
  575.  
  576.  
  577. end
  578. coroutine.resume(coroutine.create(SCRIPT_ZOLF79_FAKESCRIPT))
  579.  
  580. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement