Advertisement
367lord3

Strucid GUI (DO NOT LEAK)

Dec 21st, 2018
3,305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local ImageLabel = Instance.new("ImageLabel")
  4. local Aimbot = Instance.new("TextButton")
  5. local X = Instance.new("TextButton")
  6. local Credits = Instance.new("TextLabel")
  7. local Title = Instance.new("TextLabel")
  8. --Properties:
  9. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10.  
  11. Frame.Parent = ScreenGui
  12. Frame.BackgroundColor3 = Color3.new(1, 1, 0)
  13. Frame.Position = UDim2.new(0.0351648405, 0, 0.280312896, 0)
  14. Frame.Size = UDim2.new(0, 338, 0, 337)
  15.  
  16. ImageLabel.Parent = Frame
  17. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  18. ImageLabel.Size = UDim2.new(0, 338, 0, 337)
  19. ImageLabel.Image = "rbxassetid://1397931163"
  20.  
  21. Aimbot.Name = "Aimbot"
  22. Aimbot.Parent = Frame
  23. Aimbot.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Aimbot.Position = UDim2.new(0.201183438, 0, 0.375898153, 0)
  25. Aimbot.Size = UDim2.new(0, 200, 0, 99)
  26. Aimbot.Font = Enum.Font.SourceSans
  27. Aimbot.Text = "AIMBOT (CLICK \"T\" TO TOGGLE)"
  28. Aimbot.TextColor3 = Color3.new(0, 0, 0)
  29. Aimbot.TextScaled = true
  30. Aimbot.TextSize = 14
  31. Aimbot.TextWrapped = true
  32. Aimbot.MouseButton1Down:connect(function()
  33. game:GetService("Players").LocalPlayer.Name = "PhoenixSigns"
  34. end)
  35. X.Name = "X"
  36. X.Parent = Frame
  37. X.BackgroundColor3 = Color3.new(1, 1, 1)
  38. X.Size = UDim2.new(0, 46, 0, 48)
  39. X.Font = Enum.Font.SourceSans
  40. X.Text = "X"
  41. X.TextColor3 = Color3.new(0, 0, 0)
  42. X.TextScaled = true
  43. X.TextSize = 14
  44. X.TextWrapped = true
  45. X.MouseButton1Down:connect(function()
  46. Frame.Visible = false
  47. end)
  48. Credits.Name = "Credits"
  49. Credits.Parent = Frame
  50. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  51. Credits.BackgroundTransparency = 1
  52. Credits.Position = UDim2.new(0.198224857, 0, 0.851632059, 0)
  53. Credits.Size = UDim2.new(0, 200, 0, 50)
  54. Credits.Font = Enum.Font.SourceSans
  55. Credits.Text = "GUI made by y7435 (aka Kuro Yamato)"
  56. Credits.TextColor3 = Color3.new(1, 1, 1)
  57. Credits.TextScaled = true
  58. Credits.TextSize = 14
  59. Credits.TextWrapped = true
  60.  
  61. Title.Name = "Title"
  62. Title.Parent = Frame
  63. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  64. Title.Position = UDim2.new(0.112963937, 0, 0.0900997594, 0)
  65. Title.Size = UDim2.new(0, 261, 0, 66)
  66. Title.Font = Enum.Font.SourceSans
  67. Title.Text = "Strucid (ALPHA) GUI"
  68. Title.TextColor3 = Color3.new(0, 0, 0)
  69. Title.TextScaled = true
  70. Title.TextSize = 14
  71. Title.TextWrapped = true
  72. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement