Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextButton = Instance.new("TextButton")
  4. local TextLabel = Instance.new("TextLabel")
  5.  
  6. ScreenGui.Parent = game.CoreGui
  7. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8.  
  9. Frame.Parent = ScreenGui
  10. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  11. Frame.Position = UDim2.new(0.41310975, 0, 0.282565117, 0)
  12. Frame.Size = UDim2.new(0, 103, 0, 101)
  13. Frame.Style = Enum.FrameStyle.DropShadow
  14. Frame.Draggable = true
  15. Frame.Active =true
  16.  
  17. TextLabel.Parent = Frame
  18. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextLabel.BorderColor3 = Color3.new(0.0901961, 0.207843, 0.0705882)
  20. TextLabel.Position = UDim2.new(-0.0343103521, 0, -0.0609744191, 0)
  21. TextLabel.Size = UDim2.new(0, 95, 0, 24)
  22. TextLabel.SizeConstraint = Enum.SizeConstraint.RelativeYY
  23. TextLabel.Font = Enum.Font.Antique
  24. TextLabel.Text = "BY \"Rb Ex\""
  25. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  26. TextLabel.TextSize = 14
  27.  
  28. TextButton.Parent = Frame
  29. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  30. TextButton.Position = UDim2.new(0.0326792933, 0, 0.378758073, 0)
  31. TextButton.Size = UDim2.new(0, 82, 0, 47)
  32. TextButton.Font = Enum.Font.SourceSans
  33. TextButton.Text = "TP DF"
  34. TextButton.TextColor3 = Color3.new(0, 0, 0)
  35. TextButton.TextSize = 14
  36. TextButton.MouseButton1Click:connect(function()
  37. local a=game.Players.LocalPlayer.Character.HumanoidRootPart;local b=game.Workspace;for c,d in pairs(b:GetChildren())do if d.ClassName=="Tool"then d.Handle.CFrame=a.CFrame end end
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement