Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local Frame = Instance.new("Frame")
  9. local LOGO = Instance.new("TextLabel")
  10. local LOGOX = Instance.new("TextLabel")
  11. local Speed = Instance.new("TextButton")
  12. local Infjump = Instance.new("TextButton")
  13. local SOON = Instance.new("TextButton")
  14. local title = Instance.new("TextLabel")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = ScreenGui
  22. Main.BackgroundColor3 = Color3.fromRGB(117, 117, 117)
  23. Main.Position = UDim2.new(0.583860755, 0, 0.574638903, 0)
  24. Main.Size = UDim2.new(0, 516, 0, 256)
  25. Main.Active = true
  26. Main.Draggable = true
  27.  
  28. Frame.Parent = Main
  29. Frame.BackgroundColor3 = Color3.fromRGB(66, 66, 66)
  30. Frame.Position = UDim2.new(0.0193798468, 0, 0.06640625, 0)
  31. Frame.Size = UDim2.new(0, 496, 0, 221)
  32.  
  33. LOGO.Name = "LOGO"
  34. LOGO.Parent = Main
  35. LOGO.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. LOGO.BackgroundTransparency = 1.000
  37. LOGO.Position = UDim2.new(-0.0116279069, 0, -0.03515625, 0)
  38. LOGO.Size = UDim2.new(0, 24, 0, 35)
  39. LOGO.Font = Enum.Font.SourceSans
  40. LOGO.Text = "S"
  41. LOGO.TextColor3 = Color3.fromRGB(255, 255, 255)
  42. LOGO.TextScaled = true
  43. LOGO.TextSize = 14.000
  44. LOGO.TextWrapped = true
  45.  
  46. LOGOX.Name = "LOGO X"
  47. LOGOX.Parent = Main
  48. LOGOX.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  49. LOGOX.BackgroundTransparency = 1.000
  50. LOGOX.Position = UDim2.new(-0.0116279069, 0, -0.01953125, 0)
  51. LOGOX.Size = UDim2.new(0, 51, 0, 26)
  52. LOGOX.Font = Enum.Font.Garamond
  53. LOGOX.Text = "X"
  54. LOGOX.TextColor3 = Color3.fromRGB(255, 170, 0)
  55. LOGOX.TextScaled = true
  56. LOGOX.TextSize = 14.000
  57. LOGOX.TextWrapped = true
  58.  
  59. Speed.Name = "Speed"
  60. Speed.Parent = Main
  61. Speed.BackgroundColor3 = Color3.fromRGB(153, 153, 153)
  62. Speed.Position = UDim2.new(0.0755813941, 0, 0.35546875, 0)
  63. Speed.Size = UDim2.new(0, 122, 0, 43)
  64. Speed.Font = Enum.Font.GothamBold
  65. Speed.Text = "Speed"
  66. Speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  67. Speed.TextScaled = true
  68. Speed.TextSize = 14.000
  69. Speed.TextWrapped = true
  70. Speed.MouseButton1Down:connect(function()
  71. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
  72. end)
  73.  
  74. Infjump.Name = "Inf jump"
  75. Infjump.Parent = Main
  76. Infjump.BackgroundColor3 = Color3.fromRGB(153, 153, 153)
  77. Infjump.Position = UDim2.new(0.416666627, 0, 0.35546875, 0)
  78. Infjump.Size = UDim2.new(0, 122, 0, 43)
  79. Infjump.Font = Enum.Font.GothamBold
  80. Infjump.Text = "Inf jump"
  81. Infjump.TextColor3 = Color3.fromRGB(0, 0, 0)
  82. Infjump.TextScaled = true
  83. Infjump.TextSize = 14.000
  84. Infjump.TextWrapped = true
  85. Infjump.MouseButton1Down:connect(function()
  86. game:GetService("UserInputService").JumpRequest:connect(function()
  87. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  88. end)
  89. end)
  90.  
  91. SOON.Name = "SOON"
  92. SOON.Parent = Main
  93. SOON.BackgroundColor3 = Color3.fromRGB(153, 153, 153)
  94. SOON.Position = UDim2.new(0.711240292, 0, 0.35546875, 0)
  95. SOON.Size = UDim2.new(0, 122, 0, 43)
  96. SOON.Font = Enum.Font.SourceSans
  97. SOON.Text = "SOON"
  98. SOON.TextColor3 = Color3.fromRGB(0, 0, 0)
  99. SOON.TextScaled = true
  100. SOON.TextSize = 14.000
  101. SOON.TextWrapped = true
  102.  
  103. title.Name = "title"
  104. title.Parent = Main
  105. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  106. title.BackgroundTransparency = 1.000
  107. title.Position = UDim2.new(0.155038759, 0, 0, 0)
  108. title.Size = UDim2.new(0, 342, 0, 17)
  109. title.Font = Enum.Font.SourceSans
  110. title.Text = "Synapse X Made by baconplay448"
  111. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  112. title.TextSize = 14.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement