Advertisement
kolijake

No sign

Aug 17th, 2020
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. --))
  2. i just a normal guy with hack
  3. --((
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local TextBox = Instance.new("TextBox")
  9. local execute = Instance.new("TextButton")
  10. local clear = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. main.Name = "main"
  18. main.Parent = ScreenGui
  19. main.Active = true
  20. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. main.BackgroundTransparency = 0.500
  22. main.Position = UDim2.new(0.417883217, 0, 0.165009946, 0)
  23. main.Size = UDim2.new(0, 471, 0, 275)
  24. main.Draggable = true
  25.  
  26. TextBox.Parent = main
  27. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  28. TextBox.Position = UDim2.new(0.0148619954, 0, 0.0218181815, 0)
  29. TextBox.Size = UDim2.new(0, 456, 0, 198)
  30. TextBox.Font = Enum.Font.SourceSans
  31. TextBox.Text = "-- script here"
  32. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. TextBox.TextSize = 19.000
  34. TextBox.TextWrapped = true
  35. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  36. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  37.  
  38. execute.Name = "execute"
  39. execute.Parent = main
  40. execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. execute.Position = UDim2.new(0.0297239907, 0, 0.778181791, 0)
  42. execute.Size = UDim2.new(0, 200, 0, 50)
  43. execute.Font = Enum.Font.SourceSans
  44. execute.Text = "execute"
  45. execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. execute.TextScaled = true
  47. execute.TextSize = 14.000
  48. execute.TextWrapped = true
  49.  
  50. clear.Name = "clear"
  51. clear.Parent = main
  52. clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. clear.Position = UDim2.new(0.558386445, 0, 0.778181791, 0)
  54. clear.Size = UDim2.new(0, 200, 0, 50)
  55. clear.Font = Enum.Font.SourceSans
  56. clear.Text = "clear"
  57. clear.TextColor3 = Color3.fromRGB(0, 0, 0)
  58. clear.TextScaled = true
  59. clear.TextSize = 14.000
  60. clear.TextWrapped = true
  61.  
  62. -- Function
  63.  
  64. execute.MouseButton1Click:connect(function()
  65. game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
  66. end)
  67.  
  68. clear.MouseButton1Click:connect(function()
  69. TextBox.Text = ""
  70. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement