Advertisement
erfecdwxsthgevfcd

Untitled

Jan 21st, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.1
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextButton = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  16. Frame.Position = UDim2.new(0.145506427, 0, 0.208728656, 0)
  17. Frame.Size = UDim2.new(0, 134, 0, 138)
  18.  
  19. TextButton.Parent = Frame
  20. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. TextButton.Position = UDim2.new(0.0879979581, 0, 0.254956961, 0)
  22. TextButton.Size = UDim2.new(0, 110, 0, 50)
  23. TextButton.Font = Enum.Font.SourceSans
  24. TextButton.Text = "Speed"
  25. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  26. TextButton.TextSize = 14.000
  27.  
  28. -- Scripts:
  29.  
  30. local function GWJRD_fake_script() -- TextButton.GuiClick
  31. local script = Instance.new('Script', TextButton)
  32.  
  33. function onclick()
  34. game.Workspace.FireTheMan789.Humanoid.WalkSpeed = 75--Script here
  35. end
  36.  
  37. script.Parent.MouseButton1Click:connect(onclick)
  38. end
  39. coroutine.wrap(GWJRD_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement