Advertisement
xgvwvv

The streets bypass fe gui script ;)

Jan 31st, 2018
8,360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local ScrollingFrame = Instance.new("ScrollingFrame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7. local TextLabel_2 = Instance.new("TextLabel")
  8.  
  9. -- Properties
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. ScrollingFrame.Parent = ScreenGui
  14. ScrollingFrame.BackgroundColor3 = Color3.new(0.12549, 0.12549, 0.12549)
  15. ScrollingFrame.BackgroundTransparency = 0.17000000178814
  16. ScrollingFrame.Position = UDim2.new(0.039577838, 0, 0.160079047, 0)
  17. ScrollingFrame.Size = UDim2.new(0, 230, 0, 145)
  18.  
  19. TextLabel.Parent = ScreenGui
  20. TextLabel.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  21. TextLabel.Position = UDim2.new(0.039577838, 0, 0.160079047, 0)
  22. TextLabel.Size = UDim2.new(0, 215, 0, 32)
  23. TextLabel.Font = Enum.Font.SourceSans
  24. TextLabel.Text = "Street Gui lol"
  25. TextLabel.TextSize = 14
  26.  
  27. TextButton.Parent = ScreenGui
  28. TextButton.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  29. TextButton.Position = UDim2.new(0.0765171498, 0, 0.333992094, 0)
  30. TextButton.Size = UDim2.new(0, 174, 0, 40)
  31. TextButton.Font = Enum.Font.SourceSans
  32. TextButton.Text = "Get Rekt"
  33. TextButton.TextSize = 14
  34.  
  35. TextButton.MouseButton1Down:connect(function()
  36. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
  37. warn("someone fucked you over feels bad man")
  38. end)
  39.  
  40. TextLabel_2.Parent = ScreenGui
  41. TextLabel_2.BackgroundColor3 = Color3.new(1, 0, 0)
  42. TextLabel_2.Position = UDim2.new(0.0468337834, 0, 0.250988156, 0)
  43. TextLabel_2.Size = UDim2.new(0, 204, 0, 15)
  44. TextLabel_2.Font = Enum.Font.SourceSans
  45. TextLabel_2.Text = "you dont have nice friends "
  46. TextLabel_2.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement