Advertisement
FragRage21

mm2 tp coin

Jul 18th, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. local ifgui = game.CoreGui:FindFirstChild("FindTools")
  2. if ifgui then ifgui:Destroy() end
  3. local FindTools = Instance.new("ScreenGui")
  4. local Button = Instance.new("TextButton")
  5.  
  6. FindTools.Name = "FindTools"
  7. FindTools.Parent = game.CoreGui
  8. FindTools.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9.  
  10. Button.Name = "Button"
  11. Button.Parent = FindTools
  12. Button.BackgroundColor3 = Color3.new(0.239216, 0.72549, 0.72549)
  13. Button.BorderSizePixel = 0
  14. Button.Position = UDim2.new(0.918470442, 0, 0.924471319, 0)
  15. Button.Size = UDim2.new(0.0815295801, 0, 0.0755287036, 0)
  16. Button.Font = Enum.Font.SourceSans
  17. Button.Text = "GetTools"
  18. Button.TextColor3 = Color3.new(0, 0, 0)
  19. Button.TextSize = 14
  20. Button.Activated:Connect(function()
  21. for i,v in pairs(workspace:GetDescendants()) do
  22. if v.Name == "Coin" then
  23. print(v)
  24. game.Players.LocalPlayer.Character.UpperTorso.CFrame = v.CFrame
  25. end
  26. end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement