SHOW:
|
|
- or go back to the newest paste.
1 | local plr = game.Players.LocalPlayer | |
2 | ||
3 | if game.ReplicatedStorage:FindFirstChild("NekoGUI") == nil then | |
4 | local scr = Instance.new("ScreenGui") | |
5 | scr.Parent = game.ReplicatedStorage scr.Name = "NekoGUI" | |
6 | local fr = Instance.new("Frame") | |
7 | fr.Parent = scr fr.Active = true fr.Draggable = true | |
8 | fr.Size = UDim2.new(0,390,.8,0) fr.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
9 | fr.Position = UDim2.new(1,-390,.2,0) fr.BackgroundTransparency = 0.3 fr.BorderSizePixel = 2 | |
10 | local header1 = Instance.new("TextLabel",fr) header1.Name = "this script was originally made by Crabway" | |
11 | header1.Position = UDim2.new(0.02,0,0,0) header1.TextSize = 75 header1.Text = "?????" | |
12 | header1.Size = UDim2.new(0.9,0,0.1,0) header1.BackgroundTransparency = 1 header1.TextXAlignment = "Left" | |
13 | header1.Font = "ArialBold" | |
14 | local header2 = Instance.new("TextLabel",fr) | |
15 | header2.Position = UDim2.new(0.06,0,0,-3) header2.TextSize = 24 header2.Text = "script by \n Crabway" | |
16 | header2.Size = UDim2.new(0.92,0,0.1,0) header2.BackgroundTransparency = 1 header2.TextXAlignment = "Right" | |
17 | header2.Font = "ArialBold" | |
18 | local close = Instance.new("TextButton",fr) close.BackgroundColor3 = Color3.fromRGB(255, 164, 164) | |
19 | close.Size = UDim2.new(1,0,0,25) close.Position = UDim2.new(0,0,.1,5) close.Font = "ArialBold" | |
20 | close.TextSize = 16 close.Text = "Minimize GUI" close.BackgroundTransparency = 0.2 close.Name = "close" | |
21 | local desc = Instance.new("TextLabel",fr) desc.BackgroundTransparency = 1 | |
22 | desc.Size = UDim2.new(1,0,.15,0) desc.Position = UDim2.new(0.02,0,.1,30) desc.Font = "SourceSans" | |
23 | desc.TextXAlignment = "Left" desc.TextYAlignment = "Top" desc.TextWrapped = true | |
24 | desc.TextSize = 26 desc.Text = "You are an adorable floating neko ball of destruction! This GUI can be dragged anywhere on your screen (or minimized)." | |
25 | local fl = Instance.new("TextButton",fr) fl.Name = "f1" | |
26 | fl.Size = UDim2.new(0,25,0,100) fl.Position = UDim2.new(0.02,0,.25,22) fl.Text = "<" fl.TextSize = 27 | |
27 | fl.Font = "ArialBold" fl.BackgroundColor3 = Color3.fromRGB(250,250,250) fl.BackgroundTransparency = 0.6 | |
28 | local f2 = Instance.new("TextButton",fr) f2.Name = "f2" | |
29 | f2.Size = UDim2.new(0,25,0,100) f2.Position = UDim2.new(0.02,125,.25,22) f2.Text = ">" f2.TextSize = 27 | |
30 | f2.Font = "ArialBold" f2.BackgroundColor3 = Color3.fromRGB(250,250,250) f2.BackgroundTransparency = 0.6 | |
31 | local face = Instance.new("ImageLabel",fr) face.Name = "Face" | |
32 | face.Size = UDim2.new(0,100,0,100) face.Position = UDim2.new(0.02,25,.25,22) | |
33 | face.BackgroundColor3 = Color3.fromRGB(250,250,250) face.BackgroundTransparency = 0.6 | |
34 | --face.Image = plr.Character.Head:FindFirstChildOfClass("Decal").Texture | |
35 | local fl = Instance.new("TextLabel",face) | |
36 | fl.Size = UDim2.new(1,0,0,20) fl.Position = UDim2.new(0,0,1,-20) fl.TextSize = 15 | |
37 | fl.BackgroundTransparency = 1 fl.Text = "Current Face" fl.Font = "ArialBold" | |
38 | local fc = Instance.new("TextLabel",face) fc.Name = "fc" | |
39 | fc.Size = UDim2.new(0,15,0,15) fc.Position = UDim2.new(0,7,0,0) fc.TextSize = 15 | |
40 | fc.BackgroundTransparency = 1 fc.Text = "1/7" fc.Font = "ArialBold" | |
41 | local s1 = Instance.new("TextLabel",fr) s1.Name = "s1" | |
42 | s1.Size = UDim2.new(0,50,0,45) s1.Position = UDim2.new(0.02,160,.25,22) s1.Text = "< E" s1.TextSize = 27 | |
43 | s1.Font = "ArialBold" s1.BackgroundColor3 = Color3.fromRGB(250,250,250) s1.BackgroundTransparency = 0.6 | |
44 | local speed = Instance.new("TextLabel",fr) speed.Name = "speed" | |
45 | speed.Size = UDim2.new(0,110,0,45) speed.Position = UDim2.new(0.02,210,.25,22) speed.Text = "1" speed.TextSize = 27 | |
46 | speed.Font = "ArialBold" speed.BackgroundColor3 = Color3.fromRGB(250,250,250) speed.BackgroundTransparency = 0.6 | |
47 | local sl = Instance.new("TextLabel",speed) speed.TextYAlignment = "Top" | |
48 | sl.Size = UDim2.new(1,0,0,20) sl.Position = UDim2.new(0,0,1,-20) sl.TextSize = 15 | |
49 | sl.BackgroundTransparency = 1 sl.Text = "Current Speed" sl.Font = "ArialBold" | |
50 | local s2 = Instance.new("TextLabel",fr) s2.Name = "s2" | |
51 | s2.Size = UDim2.new(0,50,0,45) s2.Position = UDim2.new(0.02,320,.25,22) s2.Text = "Q >" s2.TextSize = 27 | |
52 | s2.Font = "ArialBold" s2.BackgroundColor3 = Color3.fromRGB(250,250,250) s2.BackgroundTransparency = 0.6 | |
53 | local rain = Instance.new("TextLabel",fr) | |
54 | rain.Size = UDim2.new(0,120,0,45) rain.Position = UDim2.new(0.02,160,.25,76) rain.Text = "Disco Mode" rain.TextSize = 18 | |
55 | rain.Font = "ArialBold" rain.BackgroundColor3 = Color3.fromRGB(250,250,250) rain.BackgroundTransparency = 0.6 | |
56 | local ron = Instance.new("TextButton",fr) ron.Name = "ron" | |
57 | ron.Size = UDim2.new(0,45,0,45) ron.Position = UDim2.new(0.02,280,.25,76) ron.Text = "On" ron.TextSize = 24 | |
58 | ron.Font = "ArialBold" ron.BackgroundColor3 = Color3.fromRGB(250,250,250) ron.BackgroundTransparency = 0.6 | |
59 | local roff = Instance.new("TextButton",fr) roff.Name = "roff" | |
60 | roff.Size = UDim2.new(0,45,0,45) roff.Position = UDim2.new(0.02,325,.25,76) roff.Text = "Off" roff.TextSize = 24 | |
61 | roff.Font = "ArialBold" roff.BackgroundColor3 = Color3.fromRGB(250,250,250) roff.BackgroundTransparency = 0.6 | |
62 | local bc = Instance.new("TextLabel",fr) | |
63 | bc.Size = UDim2.new(0,120,0,45) bc.Position = UDim2.new(0,0,.25,125) bc.Text = "Ball Color" bc.TextSize = 22 | |
64 | bc.Font = "ArialBold" bc.BackgroundColor3 = Color3.fromRGB(250,250,250) bc.BackgroundTransparency = 1 | |
65 | local c1 = Instance.new("TextButton",fr) c1.Name = "c1" | |
66 | c1.Size = UDim2.new(0,35,0,35) c1.Position = UDim2.new(0,120,.25,130) | |
67 | c1.BackgroundColor3 = Color3.fromRGB(248,248,248) c1.Text = "" c1.BorderSizePixel = 0 | |
68 | local c2 = Instance.new("TextButton",fr) c2.Name = "c2" | |
69 | c2.Size = UDim2.new(0,35,0,35) c2.Position = UDim2.new(0,155,.25,130) | |
70 | c2.BackgroundColor3 = Color3.fromRGB(241,231,199) c2.Text = "" c2.BorderSizePixel = 0 | |
71 | local c3 = Instance.new("TextButton",fr) c3.Name = "c3" | |
72 | c3.Size = UDim2.new(0,35,0,35) c3.Position = UDim2.new(0,190,.25,130) | |
73 | c3.BackgroundColor3 = Color3.fromRGB(215,197,154) c3.Text = "" c3.BorderSizePixel = 0 | |
74 | local c4 = Instance.new("TextButton",fr) c4.Name = "c4" | |
75 | c4.Size = UDim2.new(0,35,0,35) c4.Position = UDim2.new(0,225,.25,130) | |
76 | c4.BackgroundColor3 = Color3.fromRGB(255,201,201) c4.Text = "" c4.BorderSizePixel = 0 | |
77 | local c5 = Instance.new("TextButton",fr) c5.Name = "c5" | |
78 | c5.Size = UDim2.new(0,35,0,35) c5.Position = UDim2.new(0,260,.25,130) | |
79 | c5.BackgroundColor3 = Color3.fromRGB(220,196,255) c5.Text = "" c5.BorderSizePixel = 0 | |
80 | local c6 = Instance.new("TextButton",fr) c6.Name = "c6" | |
81 | c6.Size = UDim2.new(0,35,0,35) c6.Position = UDim2.new(0,295,.25,130) | |
82 | c6.BackgroundColor3 = Color3.fromRGB(180,210,228) c6.Text = "" c6.BorderSizePixel = 0 | |
83 | local c7 = Instance.new("TextButton",fr) c7.Name = "c7" | |
84 | c7.Size = UDim2.new(0,35,0,35) c7.Position = UDim2.new(0,330,.25,130) | |
85 | c7.BackgroundColor3 = Color3.fromRGB(213,255,201) c7.Text = "" c7.BorderSizePixel = 0 | |
86 | local sep = Instance.new("ImageLabel",fr) sep.Name = "Divider" | |
87 | sep.Image = "rbxassetid://546990373" sep.Size = UDim2.new(.9,0,0,1) sep.Position = UDim2.new(.05,0,.25,175) | |
88 | sep.ImageTransparency = 0.5 sep.BorderSizePixel = 0 | |
89 | --------------------------------------------------- | |
90 | local hl = Instance.new("TextLabel",fr) | |
91 | hl.Size = UDim2.new(0,120,0,45) hl.Position = UDim2.new(0,0,.25,175) hl.Text = "Health" hl.TextSize = 24 | |
92 | hl.Font = "ArialBold" hl.BackgroundColor3 = Color3.fromRGB(250,250,250) hl.BackgroundTransparency = 1 | |
93 | local hb = Instance.new("TextLabel",fr) | |
94 | hb.Size = UDim2.new(0,245,0,20) hb.Position = UDim2.new(0,120,.25,188) | |
95 | hb.BackgroundTransparency = 0.2 hb.Text = "" hb.BackgroundColor3 = Color3.fromRGB(255, 164, 164) | |
96 | local bar = Instance.new("TextLabel",fr) bar.Name = "bar" | |
97 | bar.Size = UDim2.new(0,245,0,20) bar.Position = UDim2.new(0,120,.25,188) | |
98 | bar.BackgroundTransparency = 0.2 bar.Text = "" bar.BackgroundColor3 = Color3.fromRGB(171, 255, 148) | |
99 | local hp = Instance.new("TextLabel",fr) hp.Name = "hp" | |
100 | hp.Size = UDim2.new(0,245,0,20) hp.Position = UDim2.new(0,120,.25,188) hp.TextSize = 18 | |
101 | hp.BackgroundTransparency = 1 hp.Text = "6900 / 6900 HP" hp.Font = "Arial" | |
102 | ||
103 | local skills = Instance.new("Folder",fr) skills.Name = "skills" | |
104 | local sk1 = Instance.new("TextLabel",skills) | |
105 | sk1.Size = UDim2.new(0,120,0,35) sk1.Position = UDim2.new(0.02,0,.25,230) sk1.Text = "Click" sk1.TextSize = 24 | |
106 | sk1.Font = "Code" sk1.BackgroundColor3 = Color3.fromRGB(250,250,250) sk1.BackgroundTransparency = 0.6 | |
107 | local sk2 = Instance.new("TextLabel",skills) | |
108 | sk2.Size = UDim2.new(0,120,0,35) sk2.Position = UDim2.new(0.02,0,.25,275) sk2.Text = "Spacebar" sk2.TextSize = 24 | |
109 | sk2.Font = "Code" sk2.BackgroundColor3 = Color3.fromRGB(250,250,250) sk2.BackgroundTransparency = 0.6 | |
110 | local sk3 = Instance.new("TextLabel",skills) | |
111 | sk3.Size = UDim2.new(0,120,0,35) sk3.Position = UDim2.new(0.02,0,.25,320) sk3.Text = "Press X" sk3.TextSize = 24 | |
112 | sk3.Font = "Code" sk3.BackgroundColor3 = Color3.fromRGB(250,250,250) sk3.BackgroundTransparency = 0.6 | |
113 | local sk4 = Instance.new("TextLabel",skills) | |
114 | sk4.Size = UDim2.new(0,120,0,35) sk4.Position = UDim2.new(0.02,0,.25,365) sk4.Text = "Press C" sk4.TextSize = 24 | |
115 | sk4.Font = "Code" sk4.BackgroundColor3 = Color3.fromRGB(250,250,250) sk4.BackgroundTransparency = 0.6 | |
116 | local d1 = Instance.new("TextLabel",skills) d1.Name = "d1" | |
117 | d1.Size = UDim2.new(0,240,0,35) d1.Position = UDim2.new(0.02,120,.25,230) d1.Text = "Super Lasers" d1.TextSize = 24 | |
118 | d1.Font = "ArialBold" d1.BackgroundColor3 = Color3.fromRGB(250,250,250) d1.BackgroundTransparency = 0.6 | |
119 | local d2 = Instance.new("TextLabel",skills) d2.Name = "d2" | |
120 | d2.Size = UDim2.new(0,240,0,35) d2.Position = UDim2.new(0.02,120,.25,275) d2.Text = "Gift Drop" d2.TextSize = 24 | |
121 | d2.Font = "ArialBold" d2.BackgroundColor3 = Color3.fromRGB(250,250,250) d2.BackgroundTransparency = 0.6 | |
122 | local d3 = Instance.new("TextLabel",skills) d3.Name = "d3" | |
123 | d3.Size = UDim2.new(0,240,0,35) d3.Position = UDim2.new(0.02,120,.25,320) d3.Text = "Weeb Attack" d3.TextSize = 24 | |
124 | d3.Font = "ArialBold" d3.BackgroundColor3 = Color3.fromRGB(250,250,250) d3.BackgroundTransparency = 0.6 | |
125 | local d4 = Instance.new("TextLabel",skills) d4.Name = "d4" | |
126 | d4.Size = UDim2.new(0,240,0,35) d4.Position = UDim2.new(0.02,120,.25,365) d4.Text = "Fish Slap" d4.TextSize = 24 | |
127 | d4.Font = "ArialBold" d4.BackgroundColor3 = Color3.fromRGB(250,250,250) d4.BackgroundTransparency = 0.6 | |
128 | ||
129 | local txt = Instance.new("TextBox",fr) txt.Name = "Chat" | |
130 | txt.Size = UDim2.new(0,310,0,35) txt.Position = UDim2.new(0.02,0,.25,410) txt.Text = "" txt.TextSize = 28 | |
131 | txt.Font = "SourceSansItalic" txt.BackgroundColor3 = Color3.fromRGB(250,250,250) txt.BackgroundTransparency = 0.6 | |
132 | txt.TextTransparency = 0.3 txt.TextYAlignment = "Top" txt.PlaceholderText = "Type here" | |
133 | local say = Instance.new("TextButton",fr) say.Name = "Say" | |
134 | say.Size = UDim2.new(0,55,0,35) say.Position = UDim2.new(0.02,310,.25,410) say.Text = "Say" say.TextSize = 28 | |
135 | say.Font = "ArialBold" say.BackgroundColor3 = Color3.fromRGB(171, 255, 148) say.BackgroundTransparency = 0.2 | |
136 | say.TextTransparency = 0.2 | |
137 | end | |
138 | if plr.PlayerGui:FindFirstChild("NekoGUI") == nil then | |
139 | local revive = game.ReplicatedStorage:FindFirstChild("NekoGUI"):Clone() revive.Parent = plr.PlayerGui | |
140 | end | |
141 | ||
142 | repeat wait(1/44) until plr and plr.Character and | |
143 | plr.Character:findFirstChild("Humanoid") and | |
144 | plr.Character:findFirstChild("Head") and plr:GetMouse() and | |
145 | game.Workspace.CurrentCamera and plr.PlayerGui.NekoGUI and | |
146 | plr.Character:findFirstChild("Humanoid").Health >= (plr.Character.Humanoid.Health)/3 | |
147 | ||
148 | local gui = plr.PlayerGui:FindFirstChild("NekoGUI").Frame | |
149 | local children = plr.Character:GetChildren() | |
150 | for i = 1, #children do | |
151 | if children[i].Name ~= "Head" and children[i]:IsA("BasePart") or children[i]:IsA("MeshPart") then | |
152 | children[i].Transparency = 1 | |
153 | elseif children[i]:IsA("Accessory") then | |
154 | children[i]:Destroy() | |
155 | end | |
156 | end if plr.Character.Head:FindFirstChildOfClass("BillboardGui") ~= nil then | |
157 | plr.Character.Head.BillboardGui:Destroy() end | |
158 | game.Workspace:FindFirstChild(""..plr.Name.."").Archivable = true | |
159 | if game.ReplicatedStorage:FindFirstChild("Dummy") ~= nil then print("ok") else | |
160 | --and plr.Character.Humanoid.Health >= (plr.Character.Humanoid.Health)/3 then | |
161 | local dummy = game.Workspace:FindFirstChild(""..plr.Name..""):Clone() dummy.Parent = game.ReplicatedStorage dummy.Name = "Dummy" --copy a dummy | |
162 | local human = game.ReplicatedStorage:FindFirstChild("Dummy",true) | |
163 | ||
164 | for i,child in pairs(human:GetChildren()) do | |
165 | if child:IsA("Pants") or child:IsA("Shirt") or child:IsA("ShirtGraphic") or child:IsA("Accessory") or child:IsA("ForceField") or child:IsA("BillboardGui") then | |
166 | child:Destroy() | |
167 | end | |
168 | end | |
169 | ||
170 | local config = {BrickColor.new("Pastel brown"),"rbxassetid://617393449","rbxassetid://1189026152", | |
171 | "rbxassetid://366273095","rbxassetid://1018844485","rbxassetid://1018847510",0} | |
172 | ||
173 | human.Name = "Dummy" | |
174 | human.Head.BrickColor = config[1] | |
175 | human.Torso.BrickColor = config[1] human.Torso.Transparency = config[7] | |
176 | human:FindFirstChild("Left Arm").BrickColor = config[1] human:FindFirstChild("Left Arm").Transparency = config[7] | |
177 | human:FindFirstChild("Right Arm").BrickColor = config[1] human:FindFirstChild("Right Arm").Transparency = config[7] | |
178 | human:FindFirstChild("Left Leg").BrickColor = config[1] human:FindFirstChild("Left Leg").Transparency = config[7] | |
179 | human:FindFirstChild("Right Leg").BrickColor = config[1] human:FindFirstChild("Right Leg").Transparency = config[7] | |
180 | end | |
181 | ||
182 | hair2 = function(Character) | |
183 | local Hair = Instance.new("Part") | |
184 | Hair.Parent = Character | |
185 | Hair.Name = "anime" | |
186 | Hair.Size = Vector3.new(0.1, 0.1, 0.1) | |
187 | Hair.CFrame = Character.Head.CFrame | |
188 | Hair:BreakJoints() | |
189 | Hair.CanCollide = false | |
190 | Hair.BrickColor = BrickColor.new("New Yeller") | |
191 | Hair.TopSurface = "Smooth" | |
192 | Hair.BottomSurface = "Smooth" | |
193 | local Weld = Instance.new("Weld") | |
194 | Weld.Name = "Weld" | |
195 | Weld.Part0 = Character.Head | |
196 | Weld.Part1 = Hair | |
197 | Weld.Parent = Character.Head | |
198 | Weld.C0 = CFrame.new(0, -1.4, 0.2)*CFrame.fromEulerAnglesXYZ(0.1, 0, 0) | |
199 | local Mesh = Instance.new("SpecialMesh") | |
200 | Mesh.Parent = Hair Mesh.Name = "HairMesh" | |
201 | Mesh.MeshId = "rbxassetid://1389678629" | |
202 | Mesh.TextureId = "rbxassetid://73139980" | |
203 | Mesh.Scale = Vector3.new(0.050, 0.050, 0.050) | |
204 | end | |
205 | ||
206 | local ball = plr.Character.Head:FindFirstChildOfClass("SpecialMesh") | |
207 | ball.MeshType = "Sphere" ball.Parent.Transparency = 0.9 | |
208 | - | ball.Parent.BrickColor = BrickColor.new("Cyan") ball.Parent.Material = "Granite" |
208 | + | ball.Parent.BrickColor = BrickColor.new("Cyan") ball.Parent.Material = "Marble" |
209 | for i = 1,9 do | |
210 | wait() ball.Scale = Vector3.new(0.8*(1+i),0.8*(2+(2*i)),0.8*(2+(2*i))) | |
211 | ball.Parent.Transparency = ball.Parent.Transparency - 0.1 | |
212 | end if gui:FindFirstChildOfClass("TextLabel") ~= nil then print("successfully became neko!") end | |
213 | plr.Character.Humanoid.DisplayDistanceType = "None" | |
214 | ball.Parent:FindFirstChildOfClass("Decal").Texture = "rbxassetid://260195370" | |
215 | plr.Character:FindFirstChild("Body Colors").HeadColor = BrickColor.new("Institutional white") | |
216 | local faces = {260195370,207366753,604931496,317101586,317101448,617393449,299971458} | |
217 | plr.Character.Humanoid.MaxHealth = 6900 plr.Character.Humanoid.Health = plr.Character.Humanoid.MaxHealth | |
218 | ||
219 | local ears = Instance.new("Part",ball.Parent.Parent) ears.Name = "Handle" ears.Anchored = true | |
220 | ears.CanCollide = false ears.Transparency = 0.3 ears.Size = Vector3.new(1, 0.8, 1) | |
221 | ears.Size = Vector3.new(15, 14.8, 16.4) | |
222 | ||
223 | local mesh = Instance.new("SpecialMesh",ears) mesh.MeshId = "http://www.roblox.com/asset/?id=1374148" | |
224 | mesh.TextureId = "http://www.roblox.com/asset/?id=413143035" mesh.MeshType = "FileMesh" | |
225 | mesh.Scale = Vector3.new(12,12,9) mesh.Offset = Vector3.new(0,6,0) | |
226 | if plr.Character.Head:FindFirstChild("pack") == nil then | |
227 | local imagechoice = Instance.new("StringValue",plr.Character.Head) imagechoice.Value = "vec" | |
228 | imagechoice.Name = "pack" end | |
229 | if plr.Character.Head:FindFirstChild("panda") == nil then | |
230 | local pandas = Instance.new("BoolValue",plr.Character.Head) pandas.Value = true | |
231 | pandas.Name = "panda" end | |
232 | local sounds = {"rbxassetid://225020499","rbxassetid://426232201","rbxassetid://777598950"} | |
233 | if plr.Character.Head:FindFirstChild("nya1") == nil then | |
234 | for ny = 1,3 do | |
235 | local sound1 = Instance.new("Sound",plr.Character.Head) sound1.Name = "nya" .. ny sound1.EmitterSize = 16 | |
236 | sound1.SoundId = sounds[ny] | |
237 | end | |
238 | end plr.Character.Head.nya3.PlaybackSpeed = 1.4 | |
239 | ||
240 | local f = 1 | |
241 | gui.Face.Image = plr.Character:FindFirstChild("Head"):FindFirstChildOfClass("Decal").Texture | |
242 | gui.f1.MouseButton1Down:connect(function() | |
243 | f = f - 1 | |
244 | if f == 1 then gui.Face.Image = "rbxassetid://" .. faces[1] | |
245 | elseif f == 2 then gui.Face.Image = "rbxassetid://" .. faces[2] | |
246 | elseif f == 3 then gui.Face.Image = "rbxassetid://" .. faces[3] | |
247 | elseif f == 4 then gui.Face.Image = "rbxassetid://" .. faces[4] | |
248 | elseif f == 5 then gui.Face.Image = "rbxassetid://" .. faces[5] | |
249 | elseif f == 6 then gui.Face.Image = "rbxassetid://" .. faces[6] | |
250 | elseif f == 7 then gui.Face.Image = "rbxassetid://" .. faces[7] | |
251 | elseif f == 0 then f = 7 gui.Face.Image = "rbxassetid://" .. faces[7] | |
252 | end | |
253 | gui.Face.fc.Text = f .. "/7" | |
254 | plr.Character:FindFirstChild("Head"):FindFirstChildOfClass("Decal").Texture = gui.Face.Image | |
255 | end) | |
256 | gui.f2.MouseButton1Down:connect(function() | |
257 | f = f + 1 | |
258 | if f == 2 then gui.Face.Image = "rbxassetid://" .. faces[2] | |
259 | elseif f == 3 then gui.Face.Image = "rbxassetid://" .. faces[3] | |
260 | elseif f == 4 then gui.Face.Image = "rbxassetid://" .. faces[4] | |
261 | elseif f == 5 then gui.Face.Image = "rbxassetid://" .. faces[5] | |
262 | elseif f == 6 then gui.Face.Image = "rbxassetid://" .. faces[6] | |
263 | elseif f == 7 then gui.Face.Image = "rbxassetid://" .. faces[7] | |
264 | elseif f == 8 then f = 1 gui.Face.Image = "rbxassetid://" .. faces[1] | |
265 | end | |
266 | gui.Face.fc.Text = f .. "/7" | |
267 | plr.Character:FindFirstChild("Head"):FindFirstChildOfClass("Decal").Texture = gui.Face.Image | |
268 | if plr.Character.Head:FindFirstChild("remedy") == nil then | |
269 | local remedy = Instance.new("StringValue",plr.Character.Head) remedy.Name = "remedy" | |
270 | if remedy.Value ~= "ok" then | |
271 | print("btw you can't see your face because you're always facing away from the camera - if you want to see it, just spin your camera fast") | |
272 | remedy.Value = "ok" | |
273 | end | |
274 | end | |
275 | end) | |
276 | ||
277 | gui.ron.MouseButton1Down:connect(function() | |
278 | if gui.ron.BackgroundColor3 ~= Color3.fromRGB(171, 255, 148) then | |
279 | gui.ron.BackgroundColor3 = Color3.fromRGB(171, 255, 148) | |
280 | gui.roff.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
281 | if plr.Character.Head:FindFirstChild("rain") == nil then | |
282 | local ping = Instance.new("IntValue",plr.Character.Head) ping.Name = "rain" | |
283 | local glow = Instance.new("PointLight",plr.Character.Head) glow.Name = "glow" | |
284 | glow.Range = 16 | |
285 | local i = 0 | |
286 | while i <= 360 do | |
287 | wait() | |
288 | if i < 360 then | |
289 | i = i + 5 | |
290 | elseif i == 360 then | |
291 | i = 0 | |
292 | end | |
293 | plr.Character.Head.Color = Color3.fromHSV(i/360, .25, 1) | |
294 | glow.Color = Color3.fromHSV(i/360, .6, 1) | |
295 | if plr.Character.Head:FindFirstChild("rain") == nil then break | |
296 | end | |
297 | end | |
298 | end | |
299 | end | |
300 | end) | |
301 | ||
302 | gui.roff.MouseButton1Down:connect(function() | |
303 | if gui.roff.BackgroundColor3 ~= Color3.fromRGB(255, 164, 164) then | |
304 | gui.roff.BackgroundColor3 = Color3.fromRGB(255, 164, 164) | |
305 | gui.ron.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
306 | if plr.Character.Head:FindFirstChild("rain") ~= nil then | |
307 | plr.Character.Head:FindFirstChild("rain"):Destroy() | |
308 | plr.Character.Head:FindFirstChild("glow"):Destroy() | |
309 | end | |
310 | end | |
311 | end) | |
312 | ||
313 | gui.c1.MouseButton1Down:connect(function() | |
314 | plr.Character.Head.Color = gui.c1.BackgroundColor3 | |
315 | end) | |
316 | gui.c2.MouseButton1Down:connect(function() | |
317 | plr.Character.Head.Color = gui.c2.BackgroundColor3 | |
318 | end) | |
319 | gui.c3.MouseButton1Down:connect(function() | |
320 | plr.Character.Head.Color = gui.c3.BackgroundColor3 | |
321 | end) | |
322 | gui.c4.MouseButton1Down:connect(function() | |
323 | plr.Character.Head.Color = gui.c4.BackgroundColor3 | |
324 | end) | |
325 | gui.c5.MouseButton1Down:connect(function() | |
326 | plr.Character.Head.Color = gui.c5.BackgroundColor3 | |
327 | end) | |
328 | gui.c6.MouseButton1Down:connect(function() | |
329 | plr.Character.Head.Color = gui.c6.BackgroundColor3 | |
330 | end) | |
331 | gui.c7.MouseButton1Down:connect(function() | |
332 | plr.Character.Head.Color = gui.c7.BackgroundColor3 | |
333 | end) | |
334 | ||
335 | plr.Character.Humanoid.HealthChanged:connect(function(health) | |
336 | gui.hp.Text = math.floor(health) .. "/" .. plr.Character.Humanoid.MaxHealth .. " HP" | |
337 | gui.bar.Size = UDim2.new(0,((health/6900)*245),0,20) | |
338 | end) | |
339 | ||
340 | local mouse = plr:GetMouse() | |
341 | mouse.Icon = "rbxassetid://184589683" | |
342 | local Head = plr.Character.Head | |
343 | local dir = {w = 0, s = 0, a = 0, d = 0} local spd = 2 | |
344 | mouse.KeyDown:connect(function(key) | |
345 | if key:lower() == "w" then dir.w = 1 | |
346 | elseif key:lower() == "s" then dir.s = 1 | |
347 | elseif key:lower() == "a" then dir.a = 1 | |
348 | elseif key:lower() == "d" then dir.d = 1 | |
349 | elseif key:lower() == "q" then spd = spd + 1 | |
350 | gui.s2.BackgroundColor3 = Color3.fromRGB(171, 255, 148) wait(.1) | |
351 | gui.s2.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
352 | gui.speed.Text = spd if spd > 0 then gui.speed.TextColor3 = Color3.fromRGB(0,0,0) end | |
353 | elseif key:lower() == "e" then spd = spd - 1 | |
354 | gui.s1.BackgroundColor3 = Color3.fromRGB(255, 164, 164) wait(.1) | |
355 | gui.s1.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
356 | gui.speed.Text = spd if spd <= 0 then gui.speed.TextColor3 = Color3.fromRGB(200,10,10) | |
357 | else gui.speed.TextColor3 = Color3.fromRGB(0,0,0) end | |
358 | elseif key:lower() == " " then | |
359 | local dicey = math.random(1,8) if dicey ~= 8 then | |
360 | gui.skills.d2.BackgroundColor3 = Color3.fromRGB(255, 164, 164) | |
361 | gui.skills.d2.TextTransparency = 0.5 wait(.1) | |
362 | gui.skills.d2.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
363 | gui.skills.d2.TextTransparency = 0 | |
364 | if plr.Character.Head:FindFirstChild("nya2") ~= nil then | |
365 | plr.Character.Head.nya2:Play() | |
366 | end | |
367 | local humann = game.ReplicatedStorage:FindFirstChild("Dummy",true):Clone() | |
368 | local config2 = {BrickColor.new("Navy blue"),"rbxassetid://617393449","rbxassetid://1189026152", | |
369 | "rbxassetid://366273095","rbxassetid://1018844485","rbxassetid://1018847510", | |
370 | "rbxassetid://217903516","rbxassetid://231514477","rbxassetid://648887959", | |
371 | "rbxassetid://22828283","rbxassetid://15431991","rbxassetid://251988595", | |
372 | "rbxassetid://324421595","rbxassetid://468148440","rbxassetid://725860978", | |
373 | "rbxassetid://725879270","rbxassetid://566518281","rbxassetid://1276814558", | |
374 | "rbxassetid://1041920022","rbxassetid://756532964","rbxassetid://1082645451", | |
375 | "rbxassetid://723072866","rbxassetid://408358623","rbxassetid://1508076370", | |
376 | "rbxassetid://1508075679"} | |
377 | humann.Parent = workspace humann.Name = "Cute Girl" | |
378 | local d1 = math.random(1,8) if d1 == 1 then | |
379 | humann.Head:FindFirstChildOfClass("Decal").Texture = config2[2] elseif d1 == 2 then | |
380 | humann.Head:FindFirstChildOfClass("Decal").Texture = config2[3] elseif d1 == 3 or d1 == 4 then | |
381 | humann.Head:FindFirstChildOfClass("Decal").Texture = config2[9] elseif d1 >= 5 and d1 <= 7 then | |
382 | humann.Head:FindFirstChildOfClass("Decal").Texture = config2[10] else | |
383 | humann.Head:FindFirstChildOfClass("Decal").Texture = config2[11] end | |
384 | humann.Humanoid.Health = 100 humann.Humanoid.MaxHealth = 100 | |
385 | local hairan = math.random(1,4) | |
386 | if hairan == 1 then | |
387 | local hair = Instance.new("Accessory",humann) hair.Name = "anime" local han = Instance.new("Part",hair) | |
388 | local mesa = Instance.new("SpecialMesh",han) mesa.MeshType = "FileMesh" han.CanCollide = false | |
389 | han.Size = Vector3.new(1.67, 2.38, 1.7) han.Position = humann.Head.Position + Vector3.new(0,0.6,0) | |
390 | local att = Instance.new("Weld",han) att.Part0 = han att.Part1 = humann.Head mesa.Name = "HairMesh" | |
391 | mesa.MeshId = "http://www.roblox.com/asset/?id=164382853" mesa.Offset = Vector3.new(-0.05, -0.55, 0.05) | |
392 | mesa.TextureId = "rbxassetid://73139980" | |
393 | elseif hairan == 2 or hairan == 3 then | |
394 | hair2(humann) | |
395 | elseif hairan == 4 then local hair = Instance.new("Accessory",humann) hair.Name = "anime" local han = Instance.new("Part",hair) | |
396 | local mesa = Instance.new("SpecialMesh",han) mesa.MeshType = "FileMesh" han.CanCollide = false | |
397 | han.Size = Vector3.new(1.67, 2.38, 1.7) han.Position = humann.Head.Position + Vector3.new(0,0.6,0) | |
398 | local att = Instance.new("Weld",han) att.Part0 = han att.Part1 = humann.Head mesa.Name = "HairMesh" | |
399 | mesa.MeshId = "http://www.roblox.com/asset/?id=398618628" mesa.Offset = Vector3.new(-0.05, -0.7, 0.7) | |
400 | mesa.TextureId = "rbxassetid://73139980" | |
401 | end | |
402 | local pants = Instance.new("Pants",humann) humann.Humanoid.HealthDisplayType = 2 | |
403 | local d2 = math.random(1,14) | |
404 | if d2 < 3 then pants.PantsTemplate = config2[4] | |
405 | elseif d2 == 3 then | |
406 | local shirt = Instance.new("Shirt",humann) shirt.ShirtTemplate = config2[5] | |
407 | pants.PantsTemplate = config2[6] | |
408 | elseif d2 == 4 then | |
409 | pants.PantsTemplate = config2[7] local shirt2 = Instance.new("Shirt",humann) shirt2 .ShirtTemplate = config2[8] | |
410 | elseif d2 == 5 then | |
411 | pants.PantsTemplate = config2[13] local shirt2 = Instance.new("Shirt",humann) shirt2 .ShirtTemplate = config2[12] | |
412 | elseif d2 == 6 then | |
413 | pants.PantsTemplate = config2[14] | |
414 | elseif d2 == 7 then pants.PantsTemplate = config2[15] | |
415 | local shirt2 = Instance.new("Shirt",humann) shirt2 .ShirtTemplate = config2[16] | |
416 | elseif d2 == 8 then pants.PantsTemplate = config2[17] | |
417 | elseif d2 == 9 then pants.PantsTemplate = config2[18] | |
418 | elseif d2 == 10 then pants.PantsTemplate = config2[19] | |
419 | elseif d2 == 11 then pants.PantsTemplate = config2[20] | |
420 | elseif d2 == 12 then pants.PantsTemplate = config2[22] | |
421 | local shirt2 = Instance.new("Shirt",humann) shirt2 .ShirtTemplate = config2[21] | |
422 | elseif d2 == 13 then pants.PantsTemplate = config2[23] | |
423 | elseif d2 == 14 then pants.PantsTemplate = config2[24] | |
424 | local shirt2 = Instance.new("Shirt",humann) shirt2 .ShirtTemplate = config2[25] | |
425 | end | |
426 | for i = 1,5 do local chr = Instance.new("CharacterMesh",humann) chr.Name = "Mesh" .. i end | |
427 | humann:FindFirstChild("Mesh1").BodyPart = "LeftArm" humann:FindFirstChild("Mesh1").MeshId = "376541126" | |
428 | humann:FindFirstChild("Mesh2").BodyPart = "RightArm" humann:FindFirstChild("Mesh2").MeshId = "303665872" | |
429 | humann:FindFirstChild("Mesh3").BodyPart = "LeftLeg" humann:FindFirstChild("Mesh3").MeshId = "303665905" | |
430 | humann:FindFirstChild("Mesh4").BodyPart = "RightLeg" humann:FindFirstChild("Mesh4").MeshId = "303665804" | |
431 | humann:FindFirstChild("Mesh5").BodyPart = "Torso" humann:FindFirstChild("Mesh5").MeshId = "319346857" | |
432 | if hairan == 2 then | |
433 | local px = Instance.new("ParticleEmitter",humann.Torso) px.Color = ColorSequence.new(Color3.new(1,0.58,0.58)) | |
434 | px.Texture = "rbxassetid://241778280" px.Size = NumberSequence.new(1) px.Transparency = NumberSequence.new(0.2,0.7) | |
435 | px.Acceleration = Vector3.new(0, 1, 0) px.Lifetime = NumberRange.new(0.8,1) px.SpreadAngle = Vector2.new(45,45) | |
436 | px.Rate = 12 end local mesa = humann:FindFirstChild("HairMesh",true) local d3 = math.random(1,5) | |
437 | if d3 == 1 then mesa.VertexColor = Vector3.new(1, 0.682, 0.768) | |
438 | elseif d3 == 2 then mesa.VertexColor = Vector3.new(.886,.682,.988) | |
439 | elseif d3 == 3 or d3 == 4 then mesa.VertexColor = Vector3.new(.207,.168,.227) end | |
440 | humann:MoveTo(plr.Character.Head.Position) | |
441 | humann:FindFirstChild("Humanoid").Died:connect(function() | |
442 | for i = 1,36 do wait(0.05) humann.Torso.Size = Vector3.new(2*(i/3),2*(i/3),1) | |
443 | humann.Torso.Transparency = (i/32) end humann:Destroy() end) | |
444 | while true do wait(4) if humann.Humanoid.Health == 0 then break elseif humann.Head.Orientation.X < 0 or humann.Head.Orientation.Z < 0 then humann.Humanoid.Jump = true end end | |
445 | else local bomb = Instance.new("Part") bomb.Parent = game.Workspace bomb.Size = Vector3.new(5,5,5) bomb.Shape = "Ball" | |
446 | - | bomb.Position = plr.Character.Head.Position bomb.Material = "Neon" local taunt = Instance.new("BillboardGui",bomb) |
446 | + | bomb.Position = plr.Character.Head.Position bomb.Material = "Granite" local taunt = Instance.new("BillboardGui",bomb) |
447 | local tex = Instance.new("TextLabel",taunt) tex.Size = UDim2.new(1,0,1,0) taunt.Size = UDim2.new(1,0,1,0) tex.Font = "ArialBold" | |
448 | taunt.AlwaysOnTop = true taunt.ExtentsOffset = Vector3.new(0,1,0) tex.BackgroundTransparency = 1 tex.TextSize = 36 | |
449 | tex.TextStrokeTransparency = 0.5 for a = 1,40 do | |
450 | bomb.BrickColor = BrickColor.new("Flame reddish orange") tex.TextColor3 = Color3.fromRGB(255,0,255) tex.Text = "?????!" wait() | |
451 | bomb.BrickColor = BrickColor.new("Dark Royal blue") tex.TextColor3 = bomb.Color tex.Text = "It's a trap!" wait() end | |
452 | local exp = Instance.new("Explosion",ball) exp.BlastPressure = 0 exp.Position = bomb.Position | |
453 | for d = 1,4 do wait(0.25) local debris = Instance.new("Part",game.Workspace) debris.Position = bomb.Position + Vector3.new(math.random(-20,20),40,math.random(-20,20)) | |
454 | local tip = taunt:Clone() tip.Parent = debris debris.Shape = "Ball" debris.Transparency = 1 tip.TextLabel.Text = "\(^?^)/" | |
455 | game.Debris:AddItem(debris,2) game.Debris:AddItem(bomb,2) tip.TextLabel.TextColor = BrickColor.White() end | |
456 | end | |
457 | elseif key:lower() == "x" then | |
458 | local bw = {506900595,506900757,452121296,452120559,452120206,452120038,423367883,423367819,423367754, | |
459 | 423367679,422117286,422117066,418685224,418684983,418684939,418684713,414515286,274890214,262036733, | |
460 | 1109361994,838687048,392486814,378703458,363795040,299272186,1018243943,1109361994,1083415745, | |
461 | 323418868,393875118} | |
462 | local ve = {612796984,614711873,614841652,615069372,612959876,612814395,615045599,625634653,615032996, | |
463 | 614981445,1445362506,615045476,615076254,615039264,614974959,612981662,615024211,625707331,614981819, | |
464 | 612943502,612943647,256792132,628548251,932028952,607140396,588465613,598848840,906228125,864152089, | |
465 | 905111829,923787474,923782547,1275853907,581612144,469577105,780494061,463587030,184419758,459490167, | |
466 | 465654184,845599994,465730120,465657089,504799310,530438891,756314908,304820363,174544487,300760964, | |
467 | 180665463,462950824,482983207,270823104,174485655,304085656,733098832,615024154,293890065,730925099, | |
468 | 1405886297,193927119,706394005,467411413,473670176,426391342,425263991,426373141,376855192, | |
469 | 339835728,318799345,319073874,291296074,295096047,291838398,289736001,281274937,279359690,656945725, | |
470 | 276733376,264913673,265889893,265900798,263673739,263680207,264821011,263673481,263658117,260531716, | |
471 | 260845711,260833005,259986481,259808956,259404434,259439828,259427090,259422447,255835525,253143283, | |
472 | 250131726,250131602,250124282,249575056,248008346,245140317,241567735,241571456,243249978,239399439, | |
473 | 239631789,239635375,236823971,236823488,233782756,233778967,226692441,224797701,225178109,224796567, | |
474 | 224794203,222644986,222825937,221378858,220598594,220527093,220525023,220525169,218728260,218731852, | |
475 | 215420803,212646557,210546661,207114982,206762457,206444504,206768603,206305096,205645373,203545413, | |
476 | 205612476,203145557,202756453,202209578,200927675,200931048,200929949,201014700,200930458,200927201, | |
477 | 200851706,200851297,200791052,199986193,195410074,194765167,193927119,193508612,185315037,185306215, | |
478 | 184591016,183533988,181970320,182180614,181054051,181053340,178511798,167662034,176033159,175687615, | |
479 | 175687427,172173476,1107076106,172161575,753627577,325644881,409389130,409389421,459003122} | |
480 | local etc = {904523485,1223226223,452121658,414515415,414515374,392486925,373234665,373234382,367384599, | |
481 | 323089924,318866621,318301125,318301592,318301394,317962246,317962035,315320981,315321078,315320595, | |
482 | 315320550,311758629,311757347,306994433,306993699,305851581,303899983,303900217,302215888,302215847, | |
483 | 301793970,301572044,301571839,301244238,301244198,299495108,299494947,299399147,299307244,299307284, | |
484 | 299306900,299306761,299306411,299306251,296581829,296581663,296579575,295254101,295253892,293695389, | |
485 | 293694965,293694758,293694844,291133560,291133385,287316555,182235151,274890053,274889867,274890053, | |
486 | 274889520,274889436,268857953,268857387,262036733,252216384,186526188,251404681,251402155,251404197, | |
487 | 251404226,251404316,251402192,1471328757,247179132,247178652,166396978,247179072,166324227,166587287, | |
488 | 149074377,149716680,627472823,163948943,1044188406,65248297,61702313,95603015,447099447,447097721, | |
489 | 447099565,447097793,862299807,507126841,146060575,149913469,677825454,119864306,149715411,1044618847, | |
490 | 878952894,624827885,1049982158,1037642644,878950170,1041757939,303340054,302563728,932025871,923782835, | |
491 | 263939752,251881598,251857392,251893053,251856478,251892958,251892301,251890131,251859005,251878677, | |
492 | 251886757,251857701,251859335,251863568,1121880679,684112014,1299622761,251401191,1471328757,618948907, | |
493 | 138711882,118648282,119572186,126322396,117691650,120255215,126449307,127054592,120255592,118483107, | |
494 | 931875292,729539036,1087038252,1193540314,285376136,137926638,182757466,1371377257,696070047,1090628584, | |
495 | 438438977,1380636163,916190546,880560361,513793050,600558603,834538647,575372667,1051465866,604637199, | |
496 | 558429729,558432422,554076202,476888262,251891222,283457996,283460784,22959210,276733869,276732270, | |
497 | 154360102,172843903,219310908,128813675,160722353,148514906,62669360,199347647,1442579989149863037, | |
498 | 786879325,373503342,367900173,267752281,1548242516} | |
499 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(255, 164, 164) | |
500 | gui.skills.d3.TextTransparency = 0.5 wait(.1) | |
501 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
502 | gui.skills.d3.TextTransparency = 0 | |
503 | local target = plr:GetMouse().Hit | |
504 | --for i = 1,#ve do local test = Instance.new("Part",workspace) local dec = Instance.new("Decal",test) test.Size = Vector3.new(7,7,0.2) | |
505 | --test.Position = Vector3.new(-100 - (i*7),40,0) dec.Texture = "rbxassetid://" .. ve[i] test.Anchored = true end | |
506 | for i = 1,7 do wait(0.15) local shot = Instance.new("Part",workspace) local b = Instance.new("BodyVelocity",shot) | |
507 | shot.Position = plr.Character.Head.Position shot.Size = Vector3.new(1,1,1) local bill = Instance.new("BillboardGui",shot) | |
508 | bill.Size = UDim2.new(0,100,0,100) bill.StudsOffset = Vector3.new(0,10,0) bill.LightInfluence = 0 bill.Name = "FBI" .. i | |
509 | local img = Instance.new("ImageLabel",bill) img.BackgroundTransparency = 1 img.ScaleType = "Slice" img.Size = bill.Size | |
510 | shot.Transparency = 1 img.ImageTransparency = 0.1 shot.Name = "bakapaka" img.AnchorPoint = Vector2.new(0,0.5) | |
511 | if i == 7 and plr.Character.Head:FindFirstChild("nya3") ~= nil then | |
512 | plr.Character.Head.nya3:Play() end | |
513 | if plr.Character.Head.panda.Value == true then | |
514 | shot.Parent = workspace else shot.Parent = game.ReplicatedStorage end | |
515 | if plr.Character.Head.pack.Value == "bw" then | |
516 | img.Image = "rbxassetid://" .. bw[math.random(1,#bw)] img.ImageTransparency = 0.6 img.ImageColor3 = Color3.fromRGB(255,225,225) elseif plr.Character.Head.pack.Value == "vec" then | |
517 | img.Image = "rbxassetid://" .. ve[math.random(1,#ve)] img.ImageTransparency = 0.1 img.ImageColor3 = Color3.fromRGB(255,255,255) elseif plr.Character.Head.pack.Value == "etc" then | |
518 | img.Image = "rbxassetid://" .. etc[math.random(1,#etc)] img.ImageTransparency = 0.2 img.ImageColor3 = Color3.fromRGB(255,255,255) end | |
519 | local HandleCFrame = shot.CFrame | |
520 | local FiringPoint = HandleCFrame.p + HandleCFrame:vectorToWorldSpace() | |
521 | local ShotCFrame = CFrame.new(FiringPoint, Vector3.new(target.X,target.Y,target.Z)) | |
522 | b.Velocity = ShotCFrame.lookVector * 80 | |
523 | game.Debris:AddItem(shot,5) | |
524 | end | |
525 | if plr.Character.Head.panda.Value == true then | |
526 | workspace.ChildAdded:connect(function(instance) wait() | |
527 | if instance.Name == "bakapaka" then | |
528 | local countchildren = plr.Character.Head:GetChildren() | |
529 | if string.sub(instance:FindFirstChildOfClass("BillboardGui").Name,1,4) == "FBI2" and #countchildren < 120 then | |
530 | local after = instance:FindFirstChildOfClass("BillboardGui"):Clone() after.Parent = plr.Character.Head | |
531 | wait(0.2) after.ImageLabel.Image = instance:FindFirstChildOfClass("BillboardGui").ImageLabel.Image after.ImageLabel.ScaleType = "Stretch" | |
532 | if plr.Character.Head:FindFirstChild("bubs") == nil then | |
533 | local bubble = Instance.new("BillboardGui",plr.Character.Head) | |
534 | bubble.AlwaysOnTop = true bubble.StudsOffset = Vector3.new(5, 0, 0) | |
535 | bubble.Size = UDim2.new(0,200,0,50) bubble.Name = "bubs" | |
536 | bubble.ExtentsOffset = Vector3.new(-5,math.random(4,6),0) | |
537 | local text = Instance.new("TextLabel",bubble) | |
538 | text.BackgroundTransparency = 1 | |
539 | text.Size = UDim2.new(1,0,0,200) text.TextSize = 50 | |
540 | text.TextColor3 = Color3.fromRGB(255,135,240) | |
541 | text.TextStrokeColor3 = Color3.fromRGB(0,0,0) | |
542 | text.Font = "ArialBold" local jad = math.random(1,3) | |
543 | text.TextXAlignment = "Center" if jad == 1 then text.Text = "???!" elseif jad == 2 then text.Text = "????!" else text.Text = "??~" end | |
544 | text:TweenPosition(UDim2.new(0,0,0,-195), "Out", "Linear", 0.6) | |
545 | game.Debris:AddItem(bubble,0.6) end | |
546 | for i = 1,30 do wait() after.ImageLabel.Size = UDim2.new(0,100*(i/10),0,120*(i/10)) after.ImageLabel.ImageTransparency = 0.95 + ((i/30)/20) | |
547 | end --after.ImageLabel.Position = UDim2.new(0,math.random(1,50),0,math.random(1,50)) end | |
548 | after:Destroy() | |
549 | end | |
550 | end | |
551 | end) | |
552 | elseif plr.Character.Head.panda.Value == false then | |
553 | game.ReplicatedStorage.ChildAdded:connect(function(instance) | |
554 | --local countchildren = plr.Character.Head:GetChildren() | |
555 | if plr.Character.Head:FindFirstChildOfClass("BillboardGui") == nil then --if instance:FindFirstChildOfClass("BillboardGui").Name == "FBI1" and #countchildren < 600 then | |
556 | local after = instance:FindFirstChildOfClass("BillboardGui"):Clone() after.Parent = plr.Character.Head after.StudsOffset = Vector3.new(0,0,0) | |
557 | after.ImageLabel.AnchorPoint = Vector2.new(0,0.5) | |
558 | wait(0.2) after.ImageLabel.Image = instance:FindFirstChildOfClass("BillboardGui").ImageLabel.Image after.ImageLabel.ScaleType = "Stretch" | |
559 | for i = 1,30 do wait() after.ImageLabel.Size = UDim2.new(0,100*(i/10),0,120*(i/10)) after.ImageLabel.ImageTransparency = 0 + (i/30) | |
560 | end | |
561 | after:Destroy() | |
562 | end | |
563 | end) | |
564 | while true do | |
565 | wait(0.3) | |
566 | local shot = Instance.new("Part") | |
567 | local bill = Instance.new("BillboardGui",shot) | |
568 | bill.Size = UDim2.new(0,100,0,100) bill.StudsOffset = Vector3.new(0,10,0) bill.LightInfluence = 0 | |
569 | local img = Instance.new("ImageLabel",bill) img.BackgroundTransparency = 1 img.ScaleType = "Slice" img.Size = bill.Size | |
570 | shot.Transparency = 1 img.ImageTransparency = 0.1 img.AnchorPoint = Vector2.new(0.5,0.5) --shot.Parent = workspace | |
571 | shot.Parent = game.ReplicatedStorage game.Debris:AddItem(shot,2) | |
572 | if plr.Character.Head.pack.Value == "bw" then | |
573 | img.Image = "rbxassetid://" .. bw[math.random(1,#bw)] img.ImageTransparency = 0.6 img.ImageColor3 = Color3.fromRGB(255,225,225) elseif plr.Character.Head.pack.Value == "vec" then | |
574 | img.Image = "rbxassetid://" .. ve[math.random(1,#ve)] img.ImageTransparency = 0.1 img.ImageColor3 = Color3.fromRGB(255,255,255) elseif plr.Character.Head.pack.Value == "etc" then | |
575 | img.Image = "rbxassetid://" .. etc[math.random(1,#etc)] img.ImageTransparency = 0.2 img.ImageColor3 = Color3.fromRGB(255,255,255) end | |
576 | if plr.Character.Head.panda.Value == true then | |
577 | break end | |
578 | end | |
579 | end | |
580 | elseif key:lower() == "r" then | |
581 | local pack = plr.Character.Head:FindFirstChildOfClass("StringValue") | |
582 | if pack.Value == "vec" then pack.Value = "etc" | |
583 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(171, 255, 148) | |
584 | gui.skills.d3.Text = "now using box images" | |
585 | gui.skills.d3.TextTransparency = 0.5 wait(.1) | |
586 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
587 | gui.skills.d3.TextTransparency = 0 | |
588 | wait(1.4) gui.skills.d3.Text = "Weeb Attack" | |
589 | elseif pack.Value == "etc" then pack.Value = "bw" | |
590 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(171, 255, 148) | |
591 | gui.skills.d3.Text = "now using pink images" | |
592 | gui.skills.d3.TextTransparency = 0.5 wait(.1) | |
593 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
594 | gui.skills.d3.TextTransparency = 0 | |
595 | wait(1.4) gui.skills.d3.Text = "Weeb Attack" | |
596 | elseif pack.Value == "bw" then pack.Value = "vec" | |
597 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(171, 255, 148) | |
598 | gui.skills.d3.Text = "now using render images" | |
599 | gui.skills.d3.TextTransparency = 0.5 wait(.1) | |
600 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
601 | gui.skills.d3.TextTransparency = 0 | |
602 | wait(1.4) gui.skills.d3.Text = "Weeb Attack" else pack.Value = "vec" | |
603 | end | |
604 | elseif key:lower() == "v" then | |
605 | local panda = plr.Character.Head:FindFirstChildOfClass("BoolValue") | |
606 | if panda.Value == true then | |
607 | panda.Value = false | |
608 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(171, 255, 148) | |
609 | gui.skills.d3.Text = "danbooru off" | |
610 | gui.skills.d3.TextTransparency = 0.5 wait(.1) | |
611 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
612 | gui.skills.d3.TextTransparency = 0 | |
613 | wait(1.4) gui.skills.d3.Text = "Weeb Attack" | |
614 | else | |
615 | panda.Value = true | |
616 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(171, 255, 148) | |
617 | gui.skills.d3.Text = "danbooru on" | |
618 | gui.skills.d3.TextTransparency = 0.5 wait(.1) | |
619 | gui.skills.d3.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
620 | gui.skills.d3.TextTransparency = 0 | |
621 | wait(1.4) gui.skills.d3.Text = "Weeb Attack" | |
622 | end | |
623 | end | |
624 | end) | |
625 | mouse.KeyUp:connect(function(key) | |
626 | if key:lower() == "w" then dir.w = 0 | |
627 | elseif key:lower() == "s" then dir.s = 0 | |
628 | elseif key:lower() == "a" then dir.a = 0 | |
629 | elseif key:lower() == "d" then dir.d = 0 | |
630 | end | |
631 | end) | |
632 | local mouseDown = false | |
633 | ||
634 | mouse.Button1Down:connect(function() --lasers | |
635 | gui.skills.d1.BackgroundColor3 = Color3.fromRGB(255, 164, 164) | |
636 | gui.skills.d1.TextTransparency = 0.5 wait(.1) | |
637 | gui.skills.d1.BackgroundColor3 = Color3.fromRGB(250,250,250) | |
638 | gui.skills.d1.TextTransparency = 0 | |
639 | mouseDown = true | |
640 | while wait() do | |
641 | if mouseDown then | |
642 | wait(0.05) | |
643 | for i = 1,3 do -- triple shot | |
644 | wait(0.1) -- cooldown between lasers per triple | |
645 | local target = plr:GetMouse().Hit local dice = math.random(1,100) | |
646 | local laser = Instance.new("Part") laser.Material = "Neon" laser.Size = Vector3.new(1,1,10) | |
647 | laser.Parent = game.Workspace laser.CanCollide = true laser.Anchored = false laser.BrickColor = plr.Character.Head.BrickColor | |
648 | laser.Position = plr.Character.Head.Position laser.Orientation = plr.Character.Head.Orientation | |
649 | if plr.Character.Head:FindFirstChild("nya1") ~= nil then | |
650 | plr.Character.Head.nya1:Play() | |
651 | end | |
652 | if dice == 99 then | |
653 | local mesh = Instance.new("SpecialMesh",laser) | |
654 | mesh.MeshType = "FileMesh" mesh.MeshId = "rbxassetid://433116596" mesh.TextureId = "rbxassetid://148913500" | |
655 | mesh.Scale = Vector3.new(0.015, 0.015, 0.015) | |
656 | end | |
657 | local b = Instance.new("BodyVelocity",laser) | |
658 | local HandleCFrame = laser.CFrame | |
659 | local FiringPoint = HandleCFrame.p + HandleCFrame:vectorToWorldSpace() | |
660 | local ShotCFrame = CFrame.new(FiringPoint, Vector3.new(target.X,target.Y,target.Z)) | |
661 | b.Velocity = ShotCFrame.lookVector * 200 | |
662 | game.Debris:AddItem(laser,5) | |
663 | laser.Touched:connect(function(otherPart) | |
664 | if otherPart.Parent:FindFirstChildOfClass("Humanoid") ~= nil and otherPart.Parent ~= plr.Character then | |
665 | if plr.Name == "Crabway" then | |
666 | otherPart.Parent.Humanoid.Sit = true otherPart.Parent.Humanoid.Health = otherPart.Parent.Humanoid.Health * 0.99 | |
667 | elseif otherPart.Parent.Humanoid.MaxHealth <= 300 then | |
668 | otherPart.Parent.Humanoid.Sit = true otherPart.Parent.Humanoid:TakeDamage(1) | |
669 | else | |
670 | otherPart.Parent.Humanoid.Sit = true otherPart.Parent.Humanoid:TakeDamage(10) | |
671 | end | |
672 | end | |
673 | end) | |
674 | end | |
675 | end | |
676 | break | |
677 | end | |
678 | --laser.Velocity = Vector3.new(CFrame.Angles(0,math.rad(180),0) * CFrame.new((dir.d-dir.a)*spd,0,(dir.s-dir.w)*spd)) | |
679 | --for i = 1,10 do | |
680 | wait() | |
681 | --print((Vector3.new(target) - laser.Position).Magnitude) | |
682 | --laser.Position = Vector3.new(start[1],start[2],start[3]) + Vector3.new(((start[1] + target.X)/10),((start[2] + target.Y)/10),((start[3] + target.Z)/10)) | |
683 | --end | |
684 | end) | |
685 | mouse.Button1Up:connect( function() | |
686 | mouseDown = false | |
687 | end) | |
688 | ||
689 | gui.close.MouseButton1Down:connect(function() | |
690 | if gui.close.Text == "Minimize GUI" then | |
691 | gui.close.Text = "Open GUI" | |
692 | gui.close.BackgroundColor3 = Color3.fromRGB(171, 255, 148) | |
693 | local closing = gui:GetChildren() | |
694 | for close = 1,#closing do | |
695 | if closing[close].ClassName ~= "Folder" and closing[close].Position.Y.Scale > 0.24 then | |
696 | closing[close].Visible = false | |
697 | elseif closing[close].ClassName == "Folder" then | |
698 | closing[close].Parent = plr.PlayerGui | |
699 | end | |
700 | gui.Size = UDim2.new(0,390,.2,0) gui.Position = UDim2.new(1,-390,.27,0) | |
701 | end | |
702 | else gui.close.Text = "Minimize GUI" | |
703 | gui.close.BackgroundColor3 = Color3.fromRGB(255, 164, 164) | |
704 | local opening = gui:GetChildren() | |
705 | for open = 1,#opening do | |
706 | if opening[open].ClassName ~= "Folder" and opening[open].Position.Y.Scale > 0.24 then | |
707 | opening[open].Visible = true | |
708 | end | |
709 | gui.Size = UDim2.new(0,390,.8,0) gui.Position = UDim2.new(1,-390,.2,0) | |
710 | plr.PlayerGui:FindFirstChild("skills",true).Parent = gui | |
711 | end | |
712 | end | |
713 | end) | |
714 | ||
715 | gui.Say.MouseButton1Down:connect(function() | |
716 | local bubble = Instance.new("BillboardGui",plr.Character.Head) | |
717 | bubble.AlwaysOnTop = true bubble.StudsOffset = Vector3.new(5, 0, 0) | |
718 | bubble.Size = UDim2.new(0,200,0,50) bubble.Name = "bubs" | |
719 | bubble.ExtentsOffset = Vector3.new(-5,math.random(4,6),0) | |
720 | local text = Instance.new("TextLabel",bubble) | |
721 | text.BackgroundTransparency = 1 | |
722 | text.Size = UDim2.new(1,0,0,200) text.TextSize = 50 | |
723 | text.TextColor3 = Color3.fromRGB(255,135,240) | |
724 | text.TextStrokeColor3 = Color3.fromRGB(0,0,0) | |
725 | text.Font = "ArialBold" local jad = math.random(1,3) | |
726 | text.TextXAlignment = "Center" text.Text = gui.Chat.Text | |
727 | text:TweenPosition(UDim2.new(0,0,0,-math.random(100,195)), "Out", "Linear", 1) game.Debris:AddItem(bubble,4) | |
728 | end) | |
729 | ||
730 | plr.Character.Humanoid.Died:connect(function() | |
731 | ball.Parent.BrickColor = BrickColor.new("Sand yellow metallic") ears.Anchored = false | |
732 | for i = 1,30 do wait(0.04) ball.Scale = Vector3.new(3*(1+(3*i/5)),3*(2+(2*(3*i/5))),3*(2+(2*(3*i/5)))) | |
733 | ball.Parent.Transparency = (i/28) if i % 7 == 0 then local deathx = Instance.new("Explosion",plr.Character.Head) | |
734 | deathx.BlastPressure = 0 deathx.Position = ball.Parent.Position + Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5)) end | |
735 | end | |
736 | for aaa = 1,3 do | |
737 | local humand = game.ReplicatedStorage:FindFirstChild("Dummy",true):Clone() | |
738 | humand.Parent = workspace humand.Name = "OwO" humand.Head.Mesh.MeshType = "FileMesh" | |
739 | humand.Head.Mesh.MeshId = "rbxassetid://760924284" humand.Head.Mesh.TextureId = "rbxassetid://760925038" local yummy = humand:GetChildren() | |
740 | for y = 1, #yummy do | |
741 | if yummy[y]:IsA("BasePart") and yummy[y].Name ~= "Head" then | |
742 | yummy[y].Transparency = 1 | |
743 | elseif yummy[y]:IsA("LocalScript") then yummy[y]:Destroy() end end | |
744 | humand:MoveTo(plr.Character.Head.Position+Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))) end | |
745 | end) | |
746 | ||
747 | Head.Anchored = true | |
748 | plr.Character.Humanoid.PlatformStand = true | |
749 | plr.Character.Humanoid.Changed:connect(function() | |
750 | plr.Character.Humanoid.PlatformStand = true end) | |
751 | repeat --0.589,6.019,-0.618 | |
752 | wait(1/44) | |
753 | ears.CFrame = CFrame.new(Head.Position + Vector3.new(0.158,0.04,-0.272), game.Workspace.CurrentCamera.CoordinateFrame.p) * CFrame.Angles(0,math.rad(180),0) * CFrame.new((dir.d-dir.a)*spd,0,(dir.s-dir.w)*spd) | |
754 | Head.CFrame = CFrame.new(Head.Position, game.Workspace.CurrentCamera.CoordinateFrame.p) * CFrame.Angles(0,math.rad(180),0) * CFrame.new((dir.d-dir.a)*spd,0,(dir.s-dir.w)*spd) | |
755 | until nil |