1 | local CoreGui = game:GetService("StarterGui") |
2 | |
3 | CoreGui:SetCore("SendNotification", { |
4 | Title = "skript by", |
5 | Text = "lulaslollipop (on Roblox)", |
6 | Duration = 3.5, |
7 | }) |
8 | |
9 | local ScreenGui = Instance.new("ScreenGui") |
10 | local Frame = Instance.new("Frame") |
11 | local TextBox = Instance.new("TextBox") |
12 | local TextButton = Instance.new("TextButton") |
13 | |
14 | ScreenGui.Parent = game.CoreGui |
15 | |
16 | Frame.Parent = ScreenGui |
17 | Frame.BackgroundColor3 = Color3.new(8,0,0) |
18 | Frame.BorderColor3 = Color3.new(0.67451, 0.211765, 0.152941) |
19 | Frame.Position = UDim2.new(0.9,0.5,0.3) |
20 | Frame.Size = UDim2.new(0.07,0.1,0.1) |
21 | Frame.Active = true |
22 | Frame.Draggable = false |
23 | |
24 | TextBox.Parent = Frame |
25 | TextBox.BackgroundColor3 = Color3.new(5,5,5) |
26 | TextBox.BackgroundTransparency = 0 |
27 | TextBox.Position = UDim2.new(0.103524067, 0, 0.200333327, 0) |
28 | TextBox.Size = UDim2.new(0.8,0.9,0.6) |
29 | TextBox.Font = Enum.Font.SourceSansLight |
30 | TextBox.FontSize = Enum.FontSize.Size14 |
31 | TextBox.Text = "Name" |
32 | TextBox.TextScaled = true |
33 | TextBox.TextSize = 8 |
34 | TextBox.TextWrapped = true |
35 | |
36 | TextButton.MouseButton1Click:connect(function() |
37 | end) |
38 | |
39 | local ScreenGui = Instance.new("ScreenGui") |
40 | local Frame = Instance.new("Frame") |
41 | local TextButton = Instance.new("TextButton") |
42 | |
43 | |
44 | ScreenGui.Parent = game.CoreGui |
45 | |
46 | Frame.Parent = ScreenGui |
47 | Frame.BackgroundColor3 = Color3.new(8,0,0) |
48 | Frame.BorderColor3 = Color3.new(0.67451, 0.211765, 0.152941) |
49 | Frame.Position = UDim2.new(0.9,0.5,0.4) |
50 | Frame.Size = UDim2.new(0.07,0.1,0.1) |
51 | Frame.Active = true |
52 | Frame.Draggable = false |
53 | |
54 | TextButton.Parent = Frame |
55 | TextButton.BackgroundColor3 = Color3.new(5,5,5) |
56 | TextButton.BackgroundTransparency = 0 |
57 | TextButton.Position = UDim2.new(0.103524067, 0, 0.200333327, 0) |
58 | TextButton.Size = UDim2.new(0.8,0.9,0.6) |
59 | TextButton.Font = Enum.Font.SourceSansLight |
60 | TextButton.FontSize = Enum.FontSize.Size14 |
61 | TextButton.Text = "Teleport" |
62 | TextButton.TextScaled = true |
63 | TextButton.TextSize = 8 |
64 | TextButton.TextWrapped = true |
65 | |
66 | TextButton.MouseButton1Click:connect(function() |
67 | local lplayer = game:GetService('Players').LocalPlayer |
68 | |
69 | local yeeting = false |
70 | function GetPlayer(String) |
71 | local Found = {} |
72 | local strl = String:lower() |
73 | if strl == "all" then |
74 | for i,v in pairs(game:GetService("Players"):GetPlayers()) do |
75 | table.insert(Found,v) |
76 | end |
77 | elseif strl == "Random" then |
78 | for i,v in pairs(game:GetService("Players"):GetPlayers()) do |
79 | if v.Name ~= lplayer.Name then |
80 | table.insert(Found,v) |
81 | end |
82 | end |
83 | elseif strl == "me" then |
84 | for i,v in pairs(game:GetService("Players"):GetPlayers()) do |
85 | if v.Name == lplayer.Name then |
86 | table.insert(Found,v) |
87 | end |
88 | end |
89 | else |
90 | for i,v in pairs(game:GetService("Players"):GetPlayers()) do |
91 | if v.Name:lower():sub(1, #String) == String:lower() then |
92 | table.insert(Found,v) |
93 | end |
94 | end |
95 | end |
96 | return Found |
97 | end |
98 | function ahh(thing) |
99 | local asd = {'yeet','gui','yeet gui'} |
100 | local f = string.upper(asd[math.random(1,#asd)]) |
101 | return f |
102 | end |
103 | |
104 | local target = unpack(GetPlayer(TextBox.Text)).Character |
105 | |
106 | game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = target.Head.CFrame;coin.Location = target.Head.Position game["Run Service"].Heartbeat:wait() |
107 | end) |