-
Notifications
You must be signed in to change notification settings - Fork 0
/
Script
1519 lines (1394 loc) · 47.6 KB
/
Script
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--]]
local options = {}
-- Options:
options.NetBypassOption = 1 -- [1] Stabler, [2] Stable
options.VRChat = true -- Set this to true if you want to chat in VR (Make sure the CoreGui is showing)
options.headscale = 3 -- How big you are in VR, This does not make your character any bigger (3 is recommended)
options.forcebubblechat = true -- Force bubblechat so you can see people chatting
options.BetterType = true -- Makes you big when you open on chat gui
options.HandsRotationOffset = Vector3.new(90,0,0) -- Rotation offset (90 is recommended)
options.HandTransparency = 0.4 -- Transparency for your VR hands, Dont worry this is client sided (0.4 is recommended)
options.HideAllHats = true -- Set this to true if you want your hats to not get in the way, (This is client sided)
options.BlockCharacter = false -- Makes your character look like a roblox studio dummy (Fun)
options.BadCoputer = false -- Set this to true if you have a bad/low-end computer
options.ShowVRControllerOutline = true -- Shows a outline of where your VR controllers are
options.ConOutlineColor = Color3.fromRGB(13, 105, 172) --Outline colour of where your VR controllers are
--
-- Main:
local cam = workspace.CurrentCamera
local R1down = false
local VR = game:GetService("VRService")
local runservice = game:service("RunService")
local input = game:GetService("UserInputService")
local keysPressed = input:GetKeysPressed()
local PlayerReset = false
local plr = game:GetService("Players").LocalPlayer
local character = plr["Character"]
local removeuseless = game:GetService("Debris")
local Blur = Instance.new("BlurEffect",game.Lighting)
Blur.Size = 0
-- Net:
local function AlignParts(Part1,Part0,CFrameOffset)
local AlignPos = Instance.new('AlignPosition', Part1);
AlignPos.Parent.CanCollide = false;
AlignPos.ApplyAtCenterOfMass = true;
AlignPos.MaxForce = 67752;
AlignPos.MaxVelocity = math.huge/9e110;
AlignPos.ReactionForceEnabled = false;
AlignPos.Responsiveness = 200;
AlignPos.RigidityEnabled = false;
local AlignOri = Instance.new('AlignOrientation', Part1);
AlignOri.MaxAngularVelocity = math.huge/9e110;
AlignOri.MaxTorque = 67752;
AlignOri.PrimaryAxisOnly = false;
AlignOri.ReactionTorqueEnabled = false;
AlignOri.Responsiveness = 200;
AlignOri.RigidityEnabled = false;
local AttachmentA=Instance.new('Attachment',Part1);
local AttachmentB=Instance.new('Attachment',Part0);
AttachmentB.CFrame = AttachmentB.CFrame * CFrameOffset
AlignPos.Attachment0 = AttachmentA;
AlignPos.Attachment1 = AttachmentB;
AlignOri.Attachment0 = AttachmentA;
AlignOri.Attachment1 = AttachmentB;
end
local hum = character.Humanoid
local LeftArm=character["Left Arm"]
local LeftLeg=character["Left Leg"]
local RightArm=character["Right Arm"]
local RightLeg=character["Right Leg"]
local Root=character["HumanoidRootPart"]
local Head=character["Head"]
local Torso=character["Torso"]
local function LoadNet() -- You can remove the script belown and the options.NetBypassOption but keep the function
if not game:IsLoaded() then game.Loaded:Wait() end -- Wait for game
if options.NetBypassOption == 2 then
for i,v in pairs(character:GetDescendants()) do
if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then
game:GetService("RunService").Heartbeat:connect(function()
v.Velocity = Vector3.new(-30,0,0)
end)
end
end
character["Torso"].Transparency = 0.8
character["Head"].Transparency = 1
end
if options.NetBypassOption == 1 then
character["Torso"].Transparency = 0.8
character["Head"].Transparency = 1
settings().Physics.AllowSleep = false
settings().Physics.DisableCSGv2 = true
settings().Physics.PhysicsEnvironmentalThrottle = Enum.EnviromentalPhysicsThrottle.Disabled
loadstring(game:HttpGet("https://raw.githubusercontent.com/OpenGamerTips/Roblox-Scripts/main/NetworkScripts/ownership.lua"))()
end
end
--
-- Check status of script:
if not _G.DidVR == true then -- If the value is nil
_G.DidVR = false
end
if _G.DidVR == true then -- If the script is running already
game:GetService("Players").LocalPlayer.MaximumSimulationRadius = 9e9
end
--
local function swait(num)
if num == 0 or num == nil then
game:service("RunService").Stepped:wait(0)
else
for i = 0, num do
game:service("RunService").Stepped:wait(0)
end
end
end
local function createpart(size, name) -- Part create function
local Part = Instance.new("Part", workspace)
Part.CFrame = character.HumanoidRootPart.CFrame
Part.Size = size
Part.Transparency = 1
Part.CanCollide = false
Part.Anchored = true
Part.Name = name
return Part
end
local moveHandL = createpart(LeftArm.Size, "moveRH")
local moveHandR = createpart(RightArm.Size, "moveLH")
local moveHead = createpart(Torso.Size, "moveH")
input.UserCFrameChanged:connect(function(Input,Move) --If the user input has changed
if Input == Enum.UserCFrame.Head then
moveHead.CFrame = cam.CFrame*(CFrame.new(Move.p*(cam.HeadScale-1))*Move - Vector3.new(0,2,0))
elseif Input == Enum.UserCFrame.LeftHand then
moveHandL.CFrame = cam.CFrame*(CFrame.new(Move.p*(cam.HeadScale-1))*Move*CFrame.Angles(math.rad(options.righthandrotoffset.X),math.rad(options.righthandrotoffset.Y),math.rad(options.righthandrotoffset.Z)))
elseif Input == Enum.UserCFrame.RightHand then
moveHandR.CFrame = cam.CFrame*(CFrame.new(Move.p*(cam.HeadScale-1))*Move*CFrame.Angles(math.rad(options.righthandrotoffset.X),math.rad(options.righthandrotoffset.Y),math.rad(options.righthandrotoffset.Z)))
end
end)
-- Chat Part:
local function LoadKeybord()
if options.VRChat == true then
local VRchat = Instance.new("ScreenGui")
local Keyboard = Instance.new("Frame")
local Q = Instance.new("TextButton")
local W = Instance.new("TextButton")
local E = Instance.new("TextButton")
local R = Instance.new("TextButton")
local T = Instance.new("TextButton")
local Y = Instance.new("TextButton")
local U = Instance.new("TextButton")
local I = Instance.new("TextButton")
local O = Instance.new("TextButton")
local P = Instance.new("TextButton")
local F = Instance.new("TextButton")
local D = Instance.new("TextButton")
local G = Instance.new("TextButton")
local L = Instance.new("TextButton")
local H = Instance.new("TextButton")
local S = Instance.new("TextButton")
local A = Instance.new("TextButton")
local J = Instance.new("TextButton")
local K = Instance.new("TextButton")
local X = Instance.new("TextButton")
local Z = Instance.new("TextButton")
local M = Instance.new("TextButton")
local N = Instance.new("TextButton")
local B = Instance.new("TextButton")
local V = Instance.new("TextButton")
local C = Instance.new("TextButton")
local TypeTextBox = Instance.new("TextLabel")
local UICorner = Instance.new("UICorner")
local WhoosVR = Instance.new("TextButton")
local UICorner_2 = Instance.new("UICorner")
local ENTER = Instance.new("TextButton")
local UICorner_3 = Instance.new("UICorner")
local SpaceBar = Instance.new("TextButton")
local UICorner_4 = Instance.new("UICorner")
local Backspace = Instance.new("TextButton")
local UICorner_5 = Instance.new("UICorner")
local Wordlist = Instance.new("TextButton")
local UICorner_6 = Instance.new("UICorner")
local PredoneWords = Instance.new("Frame")
local Hello = Instance.new("TextButton")
local UICorner_7 = Instance.new("UICorner")
local BackHome = Instance.new("TextButton")
local UICorner_8 = Instance.new("UICorner")
local Sup = Instance.new("TextButton")
local UICorner_9 = Instance.new("UICorner")
local Hi = Instance.new("TextButton")
local UICorner_10 = Instance.new("UICorner")
local Thanks = Instance.new("TextButton")
local UICorner_11 = Instance.new("UICorner")
local Omg = Instance.new("TextButton")
local UICorner_12 = Instance.new("UICorner")
local Lol = Instance.new("TextButton")
local UICorner_13 = Instance.new("UICorner")
local You = Instance.new("TextButton")
local UICorner_14 = Instance.new("UICorner")
local Him = Instance.new("TextButton")
local UICorner_15 = Instance.new("UICorner")
local Her = Instance.new("TextButton")
local UICorner_16 = Instance.new("UICorner")
local And = Instance.new("TextButton")
local UICorner_17 = Instance.new("UICorner")
local Yes = Instance.new("TextButton")
local UICorner_18 = Instance.new("UICorner")
local No = Instance.new("TextButton")
local UICorner_19 = Instance.new("UICorner")
local Stop = Instance.new("TextButton")
local UICorner_20 = Instance.new("UICorner")
local Start = Instance.new("TextButton")
local UICorner_21 = Instance.new("UICorner")
local What = Instance.new("TextButton")
local UICorner_22 = Instance.new("UICorner")
local Sad = Instance.new("TextButton")
local UICorner_23 = Instance.new("UICorner")
local Happy = Instance.new("TextButton")
local UICorner_24 = Instance.new("UICorner")
local Suprise = Instance.new("TextButton")
local UICorner_25 = Instance.new("UICorner")
local Wut = Instance.new("TextButton")
local UICorner_26 = Instance.new("UICorner")
local Its = Instance.new("TextButton")
local UICorner_27 = Instance.new("UICorner")
local Me = Instance.new("TextButton")
local UICorner_28 = Instance.new("UICorner")
--Properties:
VRchat.Name = "VR chat"
VRchat.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
VRchat.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Keyboard.Name = "Keyboard"
Keyboard.Parent = VRchat
Keyboard.BackgroundColor3 = Color3.fromRGB(109, 109, 109)
Keyboard.BackgroundTransparency = 0.300
Keyboard.Position = UDim2.new(-0.00080871582, 0, -0.00193678541, 0)
Keyboard.Size = UDim2.new(1, 0, 1, 0)
Q.Name = "Q"
Q.Parent = Keyboard
Q.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Q.Position = UDim2.new(0.0117462156, 0, 0.252441317, 0)
Q.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
Q.Font = Enum.Font.SourceSans
Q.Text = "Q"
Q.TextColor3 = Color3.fromRGB(0, 0, 0)
Q.TextScaled = true
Q.TextSize = 25.000
Q.TextWrapped = true
W.Name = "W"
W.Parent = Keyboard
W.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
W.Position = UDim2.new(0.111448169, 0, 0.252441317, 0)
W.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
W.Font = Enum.Font.SourceSans
W.Text = "W"
W.TextColor3 = Color3.fromRGB(0, 0, 0)
W.TextScaled = true
W.TextSize = 25.000
W.TextWrapped = true
E.Name = "E"
E.Parent = Keyboard
E.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
E.Position = UDim2.new(0.212396309, 0, 0.252441317, 0)
E.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
E.Font = Enum.Font.SourceSans
E.Text = "E"
E.TextColor3 = Color3.fromRGB(0, 0, 0)
E.TextScaled = true
E.TextSize = 25.000
E.TextWrapped = true
R.Name = "R"
R.Parent = Keyboard
R.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
R.Position = UDim2.new(0.307621926, 0, 0.252441317, 0)
R.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
R.Font = Enum.Font.SourceSans
R.Text = "R"
R.TextColor3 = Color3.fromRGB(0, 0, 0)
R.TextScaled = true
R.TextSize = 25.000
R.TextWrapped = true
T.Name = "T"
T.Parent = Keyboard
T.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
T.Position = UDim2.new(0.408570051, 0, 0.252441317, 0)
T.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
T.Font = Enum.Font.SourceSans
T.Text = "T"
T.TextColor3 = Color3.fromRGB(0, 0, 0)
T.TextScaled = true
T.TextSize = 25.000
T.TextWrapped = true
Y.Name = "Y"
Y.Parent = Keyboard
Y.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Y.Position = UDim2.new(0.508271873, 0, 0.252441317, 0)
Y.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
Y.Font = Enum.Font.SourceSans
Y.Text = "Y"
Y.TextColor3 = Color3.fromRGB(0, 0, 0)
Y.TextScaled = true
Y.TextSize = 25.000
Y.TextWrapped = true
U.Name = "U"
U.Parent = Keyboard
U.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
U.Position = UDim2.new(0.607973874, 0, 0.252441317, 0)
U.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
U.Font = Enum.Font.SourceSans
U.Text = "U"
U.TextColor3 = Color3.fromRGB(0, 0, 0)
U.TextScaled = true
U.TextSize = 25.000
U.TextWrapped = true
I.Name = "I"
I.Parent = Keyboard
I.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
I.Position = UDim2.new(0.706081927, 0, 0.252441317, 0)
I.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
I.Font = Enum.Font.SourceSans
I.Text = "I"
I.TextColor3 = Color3.fromRGB(0, 0, 0)
I.TextScaled = true
I.TextSize = 25.000
I.TextWrapped = true
O.Name = "O"
O.Parent = Keyboard
O.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
O.Position = UDim2.new(0.803423941, 0, 0.252441317, 0)
O.Size = UDim2.new(0.0859585702, 0, 0.158975735, 0)
O.Font = Enum.Font.SourceSans
O.Text = "O"
O.TextColor3 = Color3.fromRGB(0, 0, 0)
O.TextScaled = true
O.TextSize = 25.000
O.TextWrapped = true
P.Name = "P"
P.Parent = Keyboard
P.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
P.Position = UDim2.new(0.898479164, 0, 0.252441317, 0)
P.Size = UDim2.new(0.0880587846, 0, 0.158975735, 0)
P.Font = Enum.Font.SourceSans
P.Text = "P"
P.TextColor3 = Color3.fromRGB(0, 0, 0)
P.TextScaled = true
P.TextSize = 25.000
P.TextWrapped = true
F.Name = "F"
F.Parent = Keyboard
F.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
F.Position = UDim2.new(0.300759614, 0, 0.436759293, 0)
F.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
F.Font = Enum.Font.SourceSans
F.Text = "F"
F.TextColor3 = Color3.fromRGB(0, 0, 0)
F.TextScaled = true
F.TextSize = 25.000
F.TextWrapped = true
D.Name = "D"
D.Parent = Keyboard
D.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
D.Position = UDim2.new(0.206816316, 0, 0.436759293, 0)
D.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
D.Font = Enum.Font.SourceSans
D.Text = "D"
D.TextColor3 = Color3.fromRGB(0, 0, 0)
D.TextScaled = true
D.TextSize = 25.000
D.TextWrapped = true
G.Name = "G"
G.Parent = Keyboard
G.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
G.Position = UDim2.new(0.400043011, 0, 0.436759293, 0)
G.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
G.Font = Enum.Font.SourceSans
G.Text = "G"
G.TextColor3 = Color3.fromRGB(0, 0, 0)
G.TextScaled = true
G.TextSize = 25.000
G.TextWrapped = true
L.Name = "L"
L.Parent = Keyboard
L.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
L.Position = UDim2.new(0.788203597, 0, 0.436759293, 0)
L.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
L.Font = Enum.Font.SourceSans
L.Text = "L"
L.TextColor3 = Color3.fromRGB(0, 0, 0)
L.TextScaled = true
L.TextSize = 25.000
L.TextWrapped = true
H.Name = "H"
H.Parent = Keyboard
H.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
H.Position = UDim2.new(0.498100758, 0, 0.436759293, 0)
H.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
H.Font = Enum.Font.SourceSans
H.Text = "H"
H.TextColor3 = Color3.fromRGB(0, 0, 0)
H.TextScaled = true
H.TextSize = 25.000
H.TextWrapped = true
S.Name = "S"
S.Parent = Keyboard
S.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
S.Position = UDim2.new(0.107532814, 0, 0.436759293, 0)
S.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
S.Font = Enum.Font.SourceSans
S.Text = "S"
S.TextColor3 = Color3.fromRGB(0, 0, 0)
S.TextScaled = true
S.TextSize = 25.000
S.TextWrapped = true
A.Name = "A"
A.Parent = Keyboard
A.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
A.Position = UDim2.new(0.00947504677, 0, 0.436759293, 0)
A.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
A.Font = Enum.Font.SourceSans
A.Text = "A"
A.TextColor3 = Color3.fromRGB(0, 0, 0)
A.TextScaled = true
A.TextSize = 25.000
A.TextWrapped = true
J.Name = "J"
J.Parent = Keyboard
J.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
J.Position = UDim2.new(0.596158445, 0, 0.436759293, 0)
J.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
J.Font = Enum.Font.SourceSans
J.Text = "J"
J.TextColor3 = Color3.fromRGB(0, 0, 0)
J.TextScaled = true
J.TextSize = 25.000
J.TextWrapped = true
K.Name = "K"
K.Parent = Keyboard
K.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
K.Position = UDim2.new(0.692648768, 0, 0.436759293, 0)
K.Size = UDim2.new(0.0845410228, 0, 0.158975735, 0)
K.Font = Enum.Font.SourceSans
K.Text = "K"
K.TextColor3 = Color3.fromRGB(0, 0, 0)
K.TextScaled = true
K.TextSize = 25.000
K.TextWrapped = true
X.Name = "X"
X.Parent = Keyboard
X.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
X.Position = UDim2.new(0.153487474, 0, 0.615810692, 0)
X.Size = UDim2.new(0.102191411, 0, 0.162968799, 0)
X.Font = Enum.Font.SourceSans
X.Text = "X"
X.TextColor3 = Color3.fromRGB(0, 0, 0)
X.TextScaled = true
X.TextSize = 25.000
X.TextWrapped = true
Z.Name = "Z"
Z.Parent = Keyboard
Z.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Z.Position = UDim2.new(0.0333947465, 0, 0.615810692, 0)
Z.Size = UDim2.new(0.102191411, 0, 0.162968799, 0)
Z.Font = Enum.Font.SourceSans
Z.Text = "Z"
Z.TextColor3 = Color3.fromRGB(0, 0, 0)
Z.TextScaled = true
Z.TextSize = 25.000
Z.TextWrapped = true
M.Name = "M"
M.Parent = Keyboard
M.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
M.Position = UDim2.new(0.765749037, 0, 0.615810692, 0)
M.Size = UDim2.new(0.102191411, 0, 0.162968799, 0)
M.Font = Enum.Font.SourceSans
M.Text = "M"
M.TextColor3 = Color3.fromRGB(0, 0, 0)
M.TextScaled = true
M.TextSize = 25.000
M.TextWrapped = true
N.Name = "N"
N.Parent = Keyboard
N.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
N.Position = UDim2.new(0.642091811, 0, 0.615810692, 0)
N.Size = UDim2.new(0.102191411, 0, 0.162968799, 0)
N.Font = Enum.Font.SourceSans
N.Text = "N"
N.TextColor3 = Color3.fromRGB(0, 0, 0)
N.TextScaled = true
N.TextSize = 25.000
N.TextWrapped = true
B.Name = "B"
B.Parent = Keyboard
B.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
B.Position = UDim2.new(0.520311058, 0, 0.615810692, 0)
B.Size = UDim2.new(0.102191411, 0, 0.162968799, 0)
B.Font = Enum.Font.SourceSans
B.Text = "B"
B.TextColor3 = Color3.fromRGB(0, 0, 0)
B.TextScaled = true
B.TextSize = 25.000
B.TextWrapped = true
V.Name = "V"
V.Parent = Keyboard
V.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
V.Position = UDim2.new(0.398611486, 0, 0.615810692, 0)
V.Size = UDim2.new(0.102191411, 0, 0.162968799, 0)
V.Font = Enum.Font.SourceSans
V.Text = "V"
V.TextColor3 = Color3.fromRGB(0, 0, 0)
V.TextScaled = true
V.TextSize = 25.000
V.TextWrapped = true
C.Name = "C"
C.Parent = Keyboard
C.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
C.Position = UDim2.new(0.282874316, 0, 0.615810692, 0)
C.Size = UDim2.new(0.102191411, 0, 0.162968799, 0)
C.Font = Enum.Font.SourceSans
C.Text = "C"
C.TextColor3 = Color3.fromRGB(0, 0, 0)
C.TextScaled = true
C.TextSize = 25.000
C.TextWrapped = true
TypeTextBox.Name = "TypeTextBox"
TypeTextBox.Parent = Keyboard
TypeTextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TypeTextBox.Position = UDim2.new(0.0448157042, 0, 0.0517003872, 0)
TypeTextBox.Size = UDim2.new(0.910251737, 0, 0.157194391, 0)
TypeTextBox.Font = Enum.Font.SourceSans
TypeTextBox.Text = ""
TypeTextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
TypeTextBox.TextScaled = true
TypeTextBox.TextSize = 14.000
TypeTextBox.TextWrapped = true
UICorner.Parent = TypeTextBox
WhoosVR.Name = "WhoosVR"
WhoosVR.Parent = Keyboard
WhoosVR.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
WhoosVR.Position = UDim2.new(0.520310998, 0, 0.912941813, 0)
WhoosVR.Size = UDim2.new(0.339041591, 0, 0.0640936419, 0)
WhoosVR.Font = Enum.Font.SourceSans
WhoosVR.Text = "Whoogives's VR"
WhoosVR.TextColor3 = Color3.fromRGB(0, 0, 0)
WhoosVR.TextScaled = true
WhoosVR.TextSize = 25.000
WhoosVR.TextWrapped = true
UICorner_2.Parent = WhoosVR
ENTER.Name = "ENTER"
ENTER.Parent = Keyboard
ENTER.BackgroundColor3 = Color3.fromRGB(97, 255, 163)
ENTER.Position = UDim2.new(0.887289643, 0, 0.683890104, 0)
ENTER.Size = UDim2.new(0.108888887, 0, 0.211250007, 0)
ENTER.Font = Enum.Font.SourceSans
ENTER.Text = "ENTER"
ENTER.TextColor3 = Color3.fromRGB(0, 0, 0)
ENTER.TextScaled = true
ENTER.TextSize = 14.000
ENTER.TextWrapped = true
UICorner_3.Parent = ENTER
SpaceBar.Name = "SpaceBar"
SpaceBar.Parent = Keyboard
SpaceBar.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SpaceBar.Position = UDim2.new(0.057130333, 0, 0.793944001, 0)
SpaceBar.Size = UDim2.new(0.802222252, 0, 0.10125, 0)
SpaceBar.Font = Enum.Font.SourceSans
SpaceBar.Text = "Space"
SpaceBar.TextColor3 = Color3.fromRGB(0, 0, 0)
SpaceBar.TextScaled = true
SpaceBar.TextSize = 14.000
SpaceBar.TextWrapped = true
UICorner_4.Parent = SpaceBar
Backspace.Name = "Backspace"
Backspace.Parent = Keyboard
Backspace.BackgroundColor3 = Color3.fromRGB(255, 160, 162)
Backspace.Position = UDim2.new(0.890622973, 0, 0.427806616, 0)
Backspace.Size = UDim2.new(0.109376945, 0, 0.236188814, 0)
Backspace.Font = Enum.Font.SourceSans
Backspace.Text = "<--"
Backspace.TextColor3 = Color3.fromRGB(0, 0, 0)
Backspace.TextScaled = true
Backspace.TextSize = 25.000
Backspace.TextWrapped = true
UICorner_5.Parent = Backspace
Wordlist.Name = "Wordlist"
Wordlist.Parent = Keyboard
Wordlist.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Wordlist.Position = UDim2.new(0.0571303293, 0, 0.912941813, 0)
Wordlist.Size = UDim2.new(0.351439774, 0, 0.0640936419, 0)
Wordlist.Font = Enum.Font.SourceSans
Wordlist.Text = "Predone words"
Wordlist.TextColor3 = Color3.fromRGB(0, 0, 0)
Wordlist.TextScaled = true
Wordlist.TextSize = 25.000
Wordlist.TextWrapped = true
UICorner_6.Parent = Wordlist
PredoneWords.Name = "PredoneWords"
PredoneWords.Parent = VRchat
PredoneWords.BackgroundColor3 = Color3.fromRGB(109, 109, 109)
PredoneWords.BackgroundTransparency = 0.300
PredoneWords.Position = UDim2.new(-0.00080871582, 0, -0.00193678541, 0)
PredoneWords.Size = UDim2.new(1, 0, 1, 0)
PredoneWords.Visible = false
Hello.Name = "Hello"
Hello.Parent = PredoneWords
Hello.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Hello.Position = UDim2.new(0.0423965231, 0, 0.0486875065, 0)
Hello.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Hello.Font = Enum.Font.SourceSans
Hello.Text = "Hello!"
Hello.TextColor3 = Color3.fromRGB(0, 0, 0)
Hello.TextScaled = true
Hello.TextSize = 25.000
Hello.TextWrapped = true
UICorner_7.Parent = Hello
BackHome.Name = "BackHome"
BackHome.Parent = PredoneWords
BackHome.BackgroundColor3 = Color3.fromRGB(255, 138, 140)
BackHome.Position = UDim2.new(0.236331716, 0, 0.918789923, 0)
BackHome.Size = UDim2.new(0.522150397, 0, 0.0720085353, 0)
BackHome.Font = Enum.Font.SourceSans
BackHome.Text = "Back"
BackHome.TextColor3 = Color3.fromRGB(255, 255, 255)
BackHome.TextScaled = true
BackHome.TextSize = 25.000
BackHome.TextWrapped = true
UICorner_8.Parent = BackHome
Sup.Name = "Sup"
Sup.Parent = PredoneWords
Sup.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Sup.Position = UDim2.new(0.359584004, 0, 0.0486875065, 0)
Sup.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Sup.Font = Enum.Font.SourceSans
Sup.Text = "Sup"
Sup.TextColor3 = Color3.fromRGB(0, 0, 0)
Sup.TextScaled = true
Sup.TextSize = 25.000
Sup.TextWrapped = true
UICorner_9.Parent = Sup
Hi.Name = "Hi"
Hi.Parent = PredoneWords
Hi.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Hi.Position = UDim2.new(0.686146557, 0, 0.0468976386, 0)
Hi.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Hi.Font = Enum.Font.SourceSans
Hi.Text = "Hi"
Hi.TextColor3 = Color3.fromRGB(0, 0, 0)
Hi.TextScaled = true
Hi.TextSize = 25.000
Hi.TextWrapped = true
UICorner_10.Parent = Hi
Thanks.Name = "Thanks"
Thanks.Parent = PredoneWords
Thanks.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Thanks.Position = UDim2.new(0.0423965082, 0, 0.166818872, 0)
Thanks.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Thanks.Font = Enum.Font.SourceSans
Thanks.Text = "Thank you!"
Thanks.TextColor3 = Color3.fromRGB(0, 0, 0)
Thanks.TextScaled = true
Thanks.TextSize = 25.000
Thanks.TextWrapped = true
UICorner_11.Parent = Thanks
Omg.Name = "Omg"
Omg.Parent = PredoneWords
Omg.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Omg.Position = UDim2.new(0.359584004, 0, 0.166818872, 0)
Omg.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Omg.Font = Enum.Font.SourceSans
Omg.Text = "Omg"
Omg.TextColor3 = Color3.fromRGB(0, 0, 0)
Omg.TextScaled = true
Omg.TextSize = 25.000
Omg.TextWrapped = true
UICorner_12.Parent = Omg
Lol.Name = "Lol"
Lol.Parent = PredoneWords
Lol.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Lol.Position = UDim2.new(0.686146557, 0, 0.166818872, 0)
Lol.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Lol.Font = Enum.Font.SourceSans
Lol.Text = "Lol"
Lol.TextColor3 = Color3.fromRGB(0, 0, 0)
Lol.TextScaled = true
Lol.TextSize = 25.000
Lol.TextWrapped = true
UICorner_13.Parent = Lol
You.Name = "You"
You.Parent = PredoneWords
You.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
You.Position = UDim2.new(0.0408340096, 0, 0.29031983, 0)
You.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
You.Font = Enum.Font.SourceSans
You.Text = "You"
You.TextColor3 = Color3.fromRGB(0, 0, 0)
You.TextScaled = true
You.TextSize = 25.000
You.TextWrapped = true
UICorner_14.Parent = You
Him.Name = "Him"
Him.Parent = PredoneWords
Him.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Him.Position = UDim2.new(0.359584004, 0, 0.29031983, 0)
Him.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Him.Font = Enum.Font.SourceSans
Him.Text = "Him"
Him.TextColor3 = Color3.fromRGB(0, 0, 0)
Him.TextScaled = true
Him.TextSize = 25.000
Him.TextWrapped = true
UICorner_15.Parent = Him
Her.Name = "Her"
Her.Parent = PredoneWords
Her.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Her.Position = UDim2.new(0.686146557, 0, 0.29031983, 0)
Her.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Her.Font = Enum.Font.SourceSans
Her.Text = "Her"
Her.TextColor3 = Color3.fromRGB(0, 0, 0)
Her.TextScaled = true
Her.TextSize = 25.000
Her.TextWrapped = true
UICorner_16.Parent = Her
And.Name = "And"
And.Parent = PredoneWords
And.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
And.Position = UDim2.new(0.0408340096, 0, 0.412030935, 0)
And.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
And.Font = Enum.Font.SourceSans
And.Text = "And"
And.TextColor3 = Color3.fromRGB(0, 0, 0)
And.TextScaled = true
And.TextSize = 25.000
And.TextWrapped = true
UICorner_17.Parent = And
Yes.Name = "Yes"
Yes.Parent = PredoneWords
Yes.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Yes.Position = UDim2.new(0.358021468, 0, 0.800339937, 0)
Yes.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Yes.Font = Enum.Font.SourceSans
Yes.Text = "Yes"
Yes.TextColor3 = Color3.fromRGB(0, 0, 0)
Yes.TextScaled = true
Yes.TextSize = 25.000
Yes.TextWrapped = true
UICorner_18.Parent = Yes
No.Name = "No"
No.Parent = PredoneWords
No.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
No.Position = UDim2.new(0.684584081, 0, 0.800339937, 0)
No.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
No.Font = Enum.Font.SourceSans
No.Text = "No"
No.TextColor3 = Color3.fromRGB(0, 0, 0)
No.TextScaled = true
No.TextSize = 25.000
No.TextWrapped = true
UICorner_19.Parent = No
Stop.Name = "Stop"
Stop.Parent = PredoneWords
Stop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Stop.Position = UDim2.new(0.0408339724, 0, 0.544481277, 0)
Stop.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Stop.Font = Enum.Font.SourceSans
Stop.Text = "Stop"
Stop.TextColor3 = Color3.fromRGB(0, 0, 0)
Stop.TextScaled = true
Stop.TextSize = 25.000
Stop.TextWrapped = true
UICorner_20.Parent = Stop
Start.Name = "Start"
Start.Parent = PredoneWords
Start.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Start.Position = UDim2.new(0.359584004, 0, 0.544481277, 0)
Start.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Start.Font = Enum.Font.SourceSans
Start.Text = "Start"
Start.TextColor3 = Color3.fromRGB(0, 0, 0)
Start.TextScaled = true
Start.TextSize = 25.000
Start.TextWrapped = true
UICorner_21.Parent = Start
What.Name = "What"
What.Parent = PredoneWords
What.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
What.Position = UDim2.new(0.686146557, 0, 0.544481277, 0)
What.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
What.Font = Enum.Font.SourceSans
What.Text = "What?"
What.TextColor3 = Color3.fromRGB(0, 0, 0)
What.TextScaled = true
What.TextSize = 25.000
What.TextWrapped = true
UICorner_22.Parent = What
Sad.Name = "Sad"
Sad.Parent = PredoneWords
Sad.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Sad.Position = UDim2.new(0.0392714739, 0, 0.6769315, 0)
Sad.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Sad.Font = Enum.Font.SourceSans
Sad.Text = ":C"
Sad.TextColor3 = Color3.fromRGB(0, 0, 0)
Sad.TextScaled = true
Sad.TextSize = 25.000
Sad.TextWrapped = true
UICorner_23.Parent = Sad
Happy.Name = "Happy"
Happy.Parent = PredoneWords
Happy.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Happy.Position = UDim2.new(0.359584004, 0, 0.6769315, 0)
Happy.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Happy.Font = Enum.Font.SourceSans
Happy.Text = ":D"
Happy.TextColor3 = Color3.fromRGB(0, 0, 0)
Happy.TextScaled = true
Happy.TextSize = 25.000
Happy.TextWrapped = true
UICorner_24.Parent = Happy
Suprise.Name = "Suprise"
Suprise.Parent = PredoneWords
Suprise.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Suprise.Position = UDim2.new(0.686146557, 0, 0.6769315, 0)
Suprise.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Suprise.Font = Enum.Font.SourceSans
Suprise.Text = ":O"
Suprise.TextColor3 = Color3.fromRGB(0, 0, 0)
Suprise.TextScaled = true
Suprise.TextSize = 25.000
Suprise.TextWrapped = true
UICorner_25.Parent = Suprise
Wut.Name = "Wut"
Wut.Parent = PredoneWords
Wut.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Wut.Position = UDim2.new(0.0377090573, 0, 0.80219245, 0)
Wut.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Wut.Font = Enum.Font.SourceSans
Wut.Text = "?"
Wut.TextColor3 = Color3.fromRGB(0, 0, 0)
Wut.TextScaled = true
Wut.TextSize = 25.000
Wut.TextWrapped = true
UICorner_26.Parent = Wut
Its.Name = "Its"
Its.Parent = PredoneWords
Its.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Its.Position = UDim2.new(0.686146557, 0, 0.411795795, 0)
Its.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Its.Font = Enum.Font.SourceSans
Its.Text = "It's"
Its.TextColor3 = Color3.fromRGB(0, 0, 0)
Its.TextScaled = true
Its.TextSize = 25.000
Its.TextWrapped = true
UICorner_27.Parent = Its
Me.Name = "Me"
Me.Parent = PredoneWords
Me.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Me.Position = UDim2.new(0.359584033, 0, 0.411795795, 0)
Me.Size = UDim2.new(0.279525012, 0, 0.0947997048, 0)
Me.Font = Enum.Font.SourceSans
Me.Text = "Me"
Me.TextColor3 = Color3.fromRGB(0, 0, 0)
Me.TextScaled = true
Me.TextSize = 25.000
Me.TextWrapped = true
UICorner_28.Parent = Me
--
local TypeText = "" --Keep this
local Gui = Keyboard -- The Gui you want to use (Must be a frame)
local Gui2 = PredoneWords -- Word list Gui
Gui.Visible = false
Gui2.Visible = false
TypeTextBox.Text = TypeText
-- Keyboard stuff:
local function DoCam(CamSizer)
if options.BetterType == true then
if CamSizer == 1 then
cam.HeadScale = options.headscale
repeat
cam.HeadScale = cam.HeadScale - 0.1
wait()
until cam.HeadScale < 1.1
repeat
Blur.Size = Blur.Size + 4.5
wait()
until Blur.Size > 50
Blur.Size = 58
cam.HeadScale = 1
game:GetService("StarterGui"):SetCore("VRLaserPointerMode", 1)
game:GetService("StarterGui"):SetCore("VREnableControllerModels", true)
end
if CamSizer == 2 then
repeat
cam.HeadScale = cam.HeadScale + 0.1
wait()
until cam.HeadScale > options.headscale - 0.1
repeat
Blur.Size = Blur.Size - 4.5
wait()
until Blur.Size < 1
Blur.Size = 0
game:GetService("StarterGui"):SetCore("VRLaserPointerMode", 0)
game:GetService("StarterGui"):SetCore("VREnableControllerModels", false)
cam.HeadScale = options.headscale
end
end
end
game:GetService("UserInputService").InputBegan:connect(function(inputObject, gameProcessedEvent)
if inputObject.KeyCode == Enum.KeyCode.ButtonB or inputObject.KeyCode == Enum.KeyCode.ButtonL1 then
if Gui.Visible == false and Gui2.Visible == false then
Gui.Visible = true