Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1.  
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Main = Instance.new("Frame")
  4. local TextButton = Instance.new("TextButton")
  5.  
  6. --Properties:
  7.  
  8. ScreenGui.Parent = game.CoreGui
  9. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. Main.Name = "Main"
  12. Main.Parent = ScreenGui
  13. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  14. Main.Position = UDim2.new(0.260317445, 0, 0.303116143, 0)
  15. Main.Size = UDim2.new(0, 499, 0, 197)
  16. Main.Active = true
  17. Main.Draggable = true
  18. Main.Active = true
  19.  
  20.  
  21. TextButton.Parent = Main
  22. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TextButton.Position = UDim2.new(0.198396802, 0, 0.253807098, 0)
  24. TextButton.Size = UDim2.new(0, 300, 0, 97)
  25. TextButton.Font = Enum.Font.SourceSans
  26. TextButton.TextColor3 = Color3.new(0, 0, 0)
  27. TextButton.TextSize = 14
  28. TextButton.MouseButton1Down:Connect(function()
  29. local tp = game.workspace:GetChildren()
  30.  
  31. for i,v in pairs(tp) do
  32. if v.Name == "ForecastTV" then
  33. if v:FindFirstChild("Face") then
  34. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Face.CFrame
  35. end
  36. end
  37. end
  38.  
  39.  
  40.  
  41. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement