Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local tpsbringer = Instance.new("ScreenGui")
- local TextButton = Instance.new("TextButton")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- tpsbringer.Name = "tpsbringer"
- tpsbringer.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- tpsbringer.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- TextButton.Parent = tpsbringer
- TextButton.BackgroundColor3 = Color3.fromRGB(0, 115, 255)
- TextButton.Position = UDim2.new(0.0952399746, 0, 0.517021656, 0)
- TextButton.Size = UDim2.new(0, 111, 0, 29)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Bring Ball"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextSize = 18.000
- Frame.Parent = tpsbringer
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.Position = UDim2.new(0.0952399746, 0, 0.48455286, 0)
- Frame.Size = UDim2.new(0, 111, 0, 19)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Size = UDim2.new(0, 111, 0, 19)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Made by Benzgamming"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- TextButton.MouseButton1Click:Connect(function()
- local char = game.Players.LocalPlayer.Character
- local TPS = game.Workspace.Balls.TPS
- TPS.CFrame = char.Torso.CFrame * CFrame.new(0, -2,-1)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement