View difference between Paste ID: Y7QuvrBi and L9FHdwdd
SHOW: | | - or go back to the newest paste.
1-
(Remove this and the spacing below. The original thread: https://v3rmillion.net/showthread.php?tid=773646)
1+
2
local scubaYEET = Instance.new("ScreenGui")
3
4
local Frame = Instance.new("Frame")
5
local TextBox = Instance.new("TextBox")
6
local TextButton = Instance.new("TextButton")
7
local TextLabel = Instance.new("TextLabel")
8
scubaYEET.Name = "scubaYEET"
9
scubaYEET.Parent = game:GetService('CoreGui')
10
scubaYEET.ResetOnSpawn = false
11
Frame.Parent = scubaYEET
12
Frame.Active = true
13
Frame.Draggable = true
14
Frame.BackgroundColor3 = Color3.new(0.352941, 0.352941, 0.352941)
15
Frame.BorderSizePixel = 0
16
Frame.Position = UDim2.new(0.0702970326, 0, 0.724137902, 0)
17
Frame.Size = UDim2.new(0, 452, 0, 64)
18
TextBox.Parent = Frame
19
TextBox.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
20
TextBox.BorderSizePixel = 0
21
TextBox.Position = UDim2.new(0.0293086898, 0, 0.101439953, 0)
22
TextBox.Size = UDim2.new(0, 323, 0, 50)
23
TextBox.Font = Enum.Font.Gotham
24
TextBox.PlaceholderText = "Player Name"
25
TextBox.Text = ""
26
TextBox.TextColor3 = Color3.new(1, 1, 1)
27
TextBox.TextSize = 14
28
TextButton.Parent = Frame
29
TextButton.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
30
TextButton.BorderSizePixel = 0
31
TextButton.Position = UDim2.new(0.758849561, 0, 0.09375, 0)
32
TextButton.Size = UDim2.new(0, 99, 0, 50)
33
TextButton.Font = Enum.Font.Arcade
34
TextButton.Text = "Y E E T"
35
TextButton.TextColor3 = Color3.new(1, 1, 1)
36
TextButton.TextSize = 14
37
TextLabel.Parent = Frame
38
TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
39
TextLabel.BackgroundTransparency = 1
40
TextLabel.BorderSizePixel = 0
41
TextLabel.Position = UDim2.new(0.25, 0, 1.00000048, 0)
42
TextLabel.Size = UDim2.new(0, 200, 0, 18)
43
TextLabel.Font = Enum.Font.SourceSans
44
TextLabel.Text = "yeet gui by scuba kermit xd"
45
TextLabel.TextColor3 = Color3.new(0, 0, 0)
46
TextLabel.TextScaled = true
47
TextLabel.TextSize = 14
48
TextLabel.TextWrapped = true
49
TextButton.MouseButton1Click:Connect(function()
50
local target = game:GetService('Players')[TextBox.Text].Character
51
52
game:GetService'Players'.LocalPlayer.Character.Humanoid.PlatformStand = true
53
local coin = Instance.new('BodyThrust',game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart)
54
coin.Force = Vector3.new(2555,0,2555)
55
repeat game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = target.Head.CFrame;coin.Location = target.Head.Position game["Run Service"].Heartbeat:wait() until not target.Head
56
end)