Advertisement
Guest User

("Btools") Me Script (WORKING)

a guest
Feb 16th, 2019
1,753
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextButton = Instance.new("TextButton")
  8. --Properties:
  9. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  14. Frame.Position = UDim2.new(0.868421078, 0, 0.408011883, 0)
  15. Frame.Size = UDim2.new(0, 175, 0, 124)
  16.  
  17. TextLabel.Parent = Frame
  18. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextLabel.Position = UDim2.new(-0.00568181835, 0, 0, 0)
  20. TextLabel.Size = UDim2.new(0, 177, 0, 39)
  21. TextLabel.Font = Enum.Font.SourceSans
  22. TextLabel.Text = "Btools"
  23. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  24. TextLabel.TextScaled = true
  25. TextLabel.TextSize = 14
  26. TextLabel.TextWrapped = true
  27.  
  28. TextButton.Parent = Frame
  29. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  30. TextButton.Position = UDim2.new(0.0625, 0, 0.39505446, 0)
  31. TextButton.Size = UDim2.new(0, 153, 0, 63)
  32. TextButton.Font = Enum.Font.SourceSans
  33. TextButton.Text = "Btools Me"
  34. TextButton.TextColor3 = Color3.new(0, 0, 0)
  35. TextButton.TextScaled = true
  36. TextButton.TextSize = 14
  37.  
  38. TextButton.MouseButton1Down:connect(function()
  39. local player = game.Players.LocalPlayer
  40. local mouse = player:GetMouse()
  41.  
  42. -- Objects
  43.  
  44. local ScreenGui = Instance.new("ScreenGui")
  45. local TextButton = Instance.new("TextButton")
  46. local On = Instance.new("StringValue")
  47.  
  48. -- Properties
  49.  
  50. ScreenGui.Parent = player.PlayerGui
  51.  
  52. TextButton.Parent = ScreenGui
  53. TextButton.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  54. TextButton.BorderSizePixel = 0
  55. TextButton.Position = UDim2.new(0, 0, 0.455743879, 0)
  56. TextButton.Size = UDim2.new(0, 186, 0, 35)
  57. TextButton.Font = Enum.Font.SourceSans
  58. TextButton.Text = "Btools (Off)"
  59. TextButton.TextColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  60. TextButton.TextScaled = true
  61. TextButton.TextSize = 14
  62. TextButton.TextWrapped = true
  63.  
  64.  
  65. On.Parent = TextButton
  66. On.Value = "Off"
  67.  
  68. -- Scripts
  69.  
  70. TextButton.MouseButton1Up:Connect(function()
  71. local player = game.Players.LocalPlayer
  72. local mouse = player:GetMouse()
  73.  
  74. -- Objects
  75.  
  76. local ScreenGui = Instance.new("ScreenGui")
  77. local TextButton = Instance.new("TextButton")
  78. local On = Instance.new("StringValue")
  79.  
  80. -- Properties
  81.  
  82. ScreenGui.Parent = player.PlayerGui
  83.  
  84. TextButton.Parent = ScreenGui
  85. TextButton.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  86. TextButton.BorderSizePixel = 0
  87. TextButton.Position = UDim2.new(0, 0, 0.455743879, 0)
  88. TextButton.Size = UDim2.new(0, 186, 0, 35)
  89. TextButton.Font = Enum.Font.SourceSans
  90. TextButton.Text = "Btools (Off)"
  91. TextButton.TextColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  92. TextButton.TextScaled = true
  93. TextButton.TextSize = 14
  94. TextButton.TextWrapped = true
  95.  
  96.  
  97. On.Parent = TextButton
  98. On.Value = "Off"
  99.  
  100. -- Scripts
  101.  
  102. TextButton.MouseButton1Up:Connect(function()
  103. if On.Value == "Off" then
  104. On.Value = "On"
  105. TextButton.Text = "Btools (On)"
  106. else
  107. On.Value = "Off"
  108. TextButton.Text = "Btools (Off)"
  109. end
  110. end)
  111.  
  112. mouse.Button1Up:Connect(function()
  113. if On.Value == "Off" then
  114. print('btools off')
  115. else
  116. if mouse.Target.Locked == true then
  117. mouse.Target:Destroy()
  118. else
  119. mouse.Target:Destroy()
  120. end
  121. end
  122. end)
  123. end)
  124.  
  125. TextButton.TextWrapped = true
  126. --scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement