This repository has been archived by the owner on Mar 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
api.txt
2909 lines (2909 loc) · 137 KB
/
api.txt
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
Class Instance [notbrowsable]
Property bool Instance.Archivable
Property string Instance.ClassName [readonly]
Property int Instance.DataCost [readonly] [RobloxPlaceSecurity]
Property string Instance.Name
Property Object Instance.Parent
Property bool Instance.RobloxLocked [PluginSecurity]
Property bool Instance.archivable [hidden]
Property string Instance.className [deprecated] [readonly]
Function void Instance:ClearAllChildren()
Function Instance Instance:Clone()
Function void Instance:Destroy()
Function Instance Instance:FindFirstChild(string name, bool recursive = false)
Function Objects Instance:GetChildren()
Function string Instance:GetDebugId(int scopeLength = 4) [notbrowsable] [PluginSecurity]
Function string Instance:GetFullName()
Function bool Instance:IsA(string className)
Function bool Instance:IsAncestorOf(Instance descendant)
Function bool Instance:IsDescendantOf(Instance ancestor)
Function void Instance:Remove() [deprecated]
Function Objects Instance:children() [deprecated]
Function Instance Instance:clone() [deprecated]
Function void Instance:destroy() [deprecated]
Function Instance Instance:findFirstChild(string name, bool recursive = false) [deprecated]
Function Objects Instance:getChildren() [deprecated]
Function bool Instance:isA(string className) [deprecated]
Function bool Instance:isDescendantOf(Instance ancestor) [deprecated]
Function void Instance:remove() [deprecated]
YieldFunction Instance Instance:WaitForChild(string childName)
Event Instance.AncestryChanged(Instance child, Instance parent)
Event Instance.Changed(Property property)
Event Instance.ChildAdded(Instance child)
Event Instance.ChildRemoved(Instance child)
Event Instance.DescendantAdded(Instance descendant)
Event Instance.DescendantRemoving(Instance descendant)
Event Instance.childAdded(Instance child) [deprecated]
Class Accoutrement : Instance
Property Vector3 Accoutrement.AttachmentForward
Property CoordinateFrame Accoutrement.AttachmentPoint
Property Vector3 Accoutrement.AttachmentPos
Property Vector3 Accoutrement.AttachmentRight
Property Vector3 Accoutrement.AttachmentUp
Class Hat : Accoutrement
Class AdService : Instance
Function void AdService:ShowVideoAd()
Event AdService.VideoAdClosed()
Class AdvancedDragger : Instance
Class Animation : Instance
Property Content Animation.AnimationId
Class AnimationController : Instance
Function Instance AnimationController:LoadAnimation(Instance animation)
Class AnimationTrack : Instance
Function void AnimationTrack:AdjustSpeed(float speed = 1)
Function void AnimationTrack:AdjustWeight(float weight = 1, float fadeTime = 0.100000001)
Function void AnimationTrack:Play(float fadeTime = 0.100000001, float weight = 1, float speed = 1)
Function void AnimationTrack:Stop(float fadeTime = 0.100000001)
Event AnimationTrack.KeyframeReached(string keyframeName)
Event AnimationTrack.Stopped() [deprecated]
Class AnimationTrackState : Instance
Class Animator : Instance
Function Instance Animator:LoadAnimation(Instance animation)
Class AssetService : Instance
Function void AssetService:SetAssetRevertUrl(string revertUrl) [LocalUserSecurity]
Function void AssetService:SetAssetVersionsUrl(string versionsUrl) [LocalUserSecurity]
Function void AssetService:SetPlaceAccessUrl(string accessUrl) [LocalUserSecurity]
YieldFunction int AssetService:CreatePlaceAsync(string placeName, int templatePlaceID, string description = )
YieldFunction int AssetService:CreatePlaceInPlayerInventoryAsync(Instance player, string placeName, int templatePlaceID, string description = )
YieldFunction Dictionary AssetService:GetAssetVersions(int placeId, int pageNum = 1)
YieldFunction int AssetService:GetCreatorAssetID(int creationID)
YieldFunction Dictionary AssetService:GetPlacePermissions(int placeId)
YieldFunction bool AssetService:RevertAsset(int placeId, int versionNumber)
YieldFunction void AssetService:SavePlaceAsync()
YieldFunction bool AssetService:SetPlacePermissions(int placeId, AccessType accessType = Everyone, Array inviteList = {})
Class BadgeService : Instance
Function void BadgeService:SetAwardBadgeUrl(string url) [LocalUserSecurity]
Function void BadgeService:SetHasBadgeCooldown(int seconds) [LocalUserSecurity]
Function void BadgeService:SetHasBadgeUrl(string url) [LocalUserSecurity]
Function void BadgeService:SetIsBadgeDisabledUrl(string url) [LocalUserSecurity]
Function void BadgeService:SetIsBadgeLegalUrl(string url) [LocalUserSecurity]
Function void BadgeService:SetPlaceId(int placeId) [LocalUserSecurity]
YieldFunction bool BadgeService:AwardBadge(int userId, int badgeId)
YieldFunction bool BadgeService:IsDisabled(int badgeId)
YieldFunction bool BadgeService:IsLegal(int badgeId)
YieldFunction bool BadgeService:UserHasBadge(int userId, int badgeId)
Event BadgeService.BadgeAwarded(string message) [RobloxScriptSecurity]
Class BasePlayerGui : Instance
Class CoreGui : BasePlayerGui [notbrowsable] [notCreatable]
Property int CoreGui.Version [readonly]
Class PlayerGui : BasePlayerGui [notCreatable]
Class StarterGui : BasePlayerGui
Property bool StarterGui.ResetPlayerGuiOnSpawn [hidden]
Property bool StarterGui.ShowDevelopmentGui
Function bool StarterGui:GetCoreGuiEnabled(CoreGuiType coreGuiType)
Function void StarterGui:SetCoreGuiEnabled(CoreGuiType coreGuiType, bool enabled)
Event StarterGui.CoreGuiChangedSignal(CoreGuiType coreGuiType, bool enabled) [RobloxScriptSecurity]
Class BaseScript : Instance
Property bool BaseScript.Disabled
Property Content BaseScript.LinkedSource
Class CoreScript : BaseScript [notCreatable]
Class StarterScript : CoreScript [notCreatable]
Class Script : BaseScript
Property ProtectedString Script.Source [PluginSecurity]
Function string Script:GetHash() [RobloxPlaceSecurity]
Class LocalScript : Script
Class BinaryStringValue : Instance
Class BindableEvent : Instance
Function void BindableEvent:Fire(Tuple arguments)
Event BindableEvent.Event(Tuple arguments)
Class BindableFunction : Instance
YieldFunction Tuple BindableFunction:Invoke(Tuple arguments)
Callback Tuple BindableFunction.OnInvoke(Tuple arguments)
Class BodyMover : Instance
Class BodyAngularVelocity : BodyMover
Property float BodyAngularVelocity.P
Property Vector3 BodyAngularVelocity.angularvelocity
Property Vector3 BodyAngularVelocity.maxTorque
Class BodyForce : BodyMover
Property Vector3 BodyForce.force
Class BodyGyro : BodyMover
Property float BodyGyro.D
Property float BodyGyro.P
Property CoordinateFrame BodyGyro.cframe
Property Vector3 BodyGyro.maxTorque
Class BodyPosition : BodyMover
Property float BodyPosition.D
Property float BodyPosition.P
Property Vector3 BodyPosition.maxForce
Property Vector3 BodyPosition.position
Function Vector3 BodyPosition:GetLastForce()
Function Vector3 BodyPosition:lastForce()
Event BodyPosition.ReachedTarget()
Class BodyThrust : BodyMover
Property Vector3 BodyThrust.force
Property Vector3 BodyThrust.location
Class BodyVelocity : BodyMover
Property float BodyVelocity.P
Property Vector3 BodyVelocity.maxForce
Property Vector3 BodyVelocity.velocity
Function Vector3 BodyVelocity:GetLastForce()
Function Vector3 BodyVelocity:lastForce()
Class RocketPropulsion : BodyMover
Property float RocketPropulsion.CartoonFactor
Property float RocketPropulsion.MaxSpeed
Property float RocketPropulsion.MaxThrust
Property Vector3 RocketPropulsion.MaxTorque
Property Object RocketPropulsion.Target
Property Vector3 RocketPropulsion.TargetOffset
Property float RocketPropulsion.TargetRadius
Property float RocketPropulsion.ThrustD
Property float RocketPropulsion.ThrustP
Property float RocketPropulsion.TurnD
Property float RocketPropulsion.TurnP
Function void RocketPropulsion:Abort()
Function void RocketPropulsion:Fire()
Function void RocketPropulsion:fire() [deprecated]
Event RocketPropulsion.ReachedTarget()
Class BoolValue : Instance
Property bool BoolValue.Value
Event BoolValue.Changed(bool value)
Event BoolValue.changed(bool value) [deprecated]
Class BrickColorValue : Instance
Property BrickColor BrickColorValue.Value
Event BrickColorValue.Changed(BrickColor value)
Event BrickColorValue.changed(BrickColor value) [deprecated]
Class Button : Instance
Function void Button:SetActive(bool active) [PluginSecurity]
Event Button.Click() [PluginSecurity]
Class CFrameValue : Instance
Property CoordinateFrame CFrameValue.Value
Event CFrameValue.Changed(CoordinateFrame value)
Event CFrameValue.changed(CoordinateFrame value) [deprecated]
Class CSGDictionaryService : Instance
Class CacheableContentProvider : Instance
Class MeshContentProvider : CacheableContentProvider
Class TextureContentProvider : CacheableContentProvider
Class Camera : Instance
Property Object Camera.CameraSubject
Property CameraType Camera.CameraType
Property CoordinateFrame Camera.CoordinateFrame
Property float Camera.FieldOfView
Property CoordinateFrame Camera.Focus
Property CoordinateFrame Camera.focus [deprecated]
Function float Camera:GetPanSpeed()
Function float Camera:GetRoll()
Function float Camera:GetTiltSpeed()
Function void Camera:Interpolate(CoordinateFrame endPos, CoordinateFrame endFocus, float duration)
Function void Camera:PanUnits(int units)
Function void Camera:SetCameraPanMode(CameraPanMode mode = Classic)
Function void Camera:SetRoll(float rollAngle)
Function bool Camera:TiltUnits(int units)
Function bool Camera:Zoom(float distance) [RobloxScriptSecurity]
Event Camera.FirstPersonTransition(bool entering) [RobloxPlaceSecurity]
Event Camera.InterpolationFinished()
Class ChangeHistoryService : Instance
Function Tuple ChangeHistoryService:GetCanRedo() [PluginSecurity]
Function Tuple ChangeHistoryService:GetCanUndo() [PluginSecurity]
Function void ChangeHistoryService:Redo() [PluginSecurity]
Function void ChangeHistoryService:ResetWaypoints() [PluginSecurity]
Function void ChangeHistoryService:SetEnabled(bool state) [PluginSecurity]
Function void ChangeHistoryService:SetWaypoint(string name) [PluginSecurity]
Function void ChangeHistoryService:Undo() [PluginSecurity]
Class CharacterAppearance : Instance
Class BodyColors : CharacterAppearance
Property BrickColor BodyColors.HeadColor
Property BrickColor BodyColors.LeftArmColor
Property BrickColor BodyColors.LeftLegColor
Property BrickColor BodyColors.RightArmColor
Property BrickColor BodyColors.RightLegColor
Property BrickColor BodyColors.TorsoColor
Class CharacterMesh : CharacterAppearance
Property int CharacterMesh.BaseTextureId
Property BodyPart CharacterMesh.BodyPart
Property int CharacterMesh.MeshId
Property int CharacterMesh.OverlayTextureId
Class Clothing : CharacterAppearance
Class Pants : Clothing
Property Content Pants.PantsTemplate
Class Shirt : Clothing
Property Content Shirt.ShirtTemplate
Class ShirtGraphic : CharacterAppearance
Property Content ShirtGraphic.Graphic
Class Skin : CharacterAppearance
Property BrickColor Skin.SkinColor
Class Chat : Instance [notCreatable]
Function void Chat:Chat(Instance partOrCharacter, string message, ChatColor color = Blue)
Event Chat.Chatted(Instance part, string message, ChatColor color)
Class ChatFilter : Instance [notCreatable]
Class ClickDetector : Instance
Property float ClickDetector.MaxActivationDistance
Event ClickDetector.MouseClick(Instance playerWhoClicked)
Event ClickDetector.MouseHoverEnter(Instance playerWhoHovered)
Event ClickDetector.MouseHoverLeave(Instance playerWhoHovered)
Event ClickDetector.mouseClick(Instance playerWhoClicked) [deprecated]
Class ClusterPacketCache : Instance
Class CollectionService : Instance
Function Objects CollectionService:GetCollection(string class)
Event CollectionService.ItemAdded(Instance instance)
Event CollectionService.ItemRemoved(Instance instance)
Class Color3Value : Instance
Property Color3 Color3Value.Value
Event Color3Value.Changed(Color3 value)
Event Color3Value.changed(Color3 value) [deprecated]
Class Configuration : Instance
Class ContentFilter : Instance
Function void ContentFilter:SetFilterLimits(int outstandingRequests, int cacheSize) [LocalUserSecurity]
Function void ContentFilter:SetFilterUrl(string url) [LocalUserSecurity]
Class ContentProvider : Instance
Property string ContentProvider.BaseUrl [readonly]
Property int ContentProvider.RequestQueueSize [readonly]
Function void ContentProvider:Preload(Content contentId)
Function void ContentProvider:SetAssetUrl(string url) [LocalUserSecurity]
Function void ContentProvider:SetBaseUrl(string url) [LocalUserSecurity]
Function void ContentProvider:SetCacheSize(int count) [LocalUserSecurity]
Function void ContentProvider:SetThreadPool(int count) [LocalUserSecurity]
Class ContextActionService : Instance
Function void ContextActionService:BindActionToInputTypes(string actionName, Function functionToBind, bool createTouchButton, Tuple inputTypes)
Function void ContextActionService:CallFunction(string actionName, UserInputState state, Instance inputObject) [RobloxScriptSecurity]
Function void ContextActionService:FireActionButtonFoundSignal(string actionName, Instance actionButton) [RobloxScriptSecurity]
Function Dictionary ContextActionService:GetAllBoundActionInfo()
Function Dictionary ContextActionService:GetBoundActionInfo(string actionName)
Function string ContextActionService:GetCurrentLocalToolIcon()
Function void ContextActionService:SetDescription(string actionName, string description)
Function void ContextActionService:SetImage(string actionName, string image)
Function void ContextActionService:SetPosition(string actionName, UDim2 position)
Function void ContextActionService:SetTitle(string actionName, string title)
Function void ContextActionService:UnbindAction(string actionName)
Function void ContextActionService:UnbindAllActions()
YieldFunction Instance ContextActionService:GetButton(string actionName)
Event ContextActionService.BoundActionAdded(string actionAdded, bool createTouchButton, Dictionary functionInfoTable) [RobloxScriptSecurity]
Event ContextActionService.BoundActionChanged(string actionChanged, string changeName, Dictionary changeTable) [RobloxScriptSecurity]
Event ContextActionService.BoundActionRemoved(string actionRemoved, Dictionary functionInfoTable) [RobloxScriptSecurity]
Event ContextActionService.GetActionButtonEvent(string actionName) [RobloxScriptSecurity]
Event ContextActionService.LocalToolEquipped(Instance toolEquipped)
Event ContextActionService.LocalToolUnequipped(Instance toolUnequipped)
Class Controller : Instance
Function void Controller:BindButton(Button button, string caption)
Function bool Controller:GetButton(Button button)
Function void Controller:UnbindButton(Button button)
Function void Controller:bindButton(Button button, string caption) [deprecated]
Function bool Controller:getButton(Button button) [deprecated]
Event Controller.ButtonChanged(Button button)
Class HumanoidController : Controller
Class SkateboardController : Controller
Property float SkateboardController.Steer [readonly]
Property float SkateboardController.Throttle [readonly]
Event SkateboardController.AxisChanged(string axis)
Class VehicleController : Controller
Class ControllerService : Instance [notCreatable]
Class CookiesService : Instance
Function void CookiesService:DeleteCookieValue(string key) [RobloxSecurity]
Function string CookiesService:GetCookieValue(string key) [RobloxSecurity]
Function void CookiesService:SetCookieValue(string key, string value) [RobloxSecurity]
Class CustomEvent : Instance
Function Objects CustomEvent:GetAttachedReceivers()
Function void CustomEvent:SetValue(float newValue)
Event CustomEvent.ReceiverConnected(Instance receiver)
Event CustomEvent.ReceiverDisconnected(Instance receiver)
Class CustomEventReceiver : Instance
Property Object CustomEventReceiver.Source
Function float CustomEventReceiver:GetCurrentValue()
Event CustomEventReceiver.EventConnected(Instance event)
Event CustomEventReceiver.EventDisconnected(Instance event)
Event CustomEventReceiver.SourceValueChanged(float newValue)
Class DataModelMesh : Instance [notbrowsable]
Property Vector3 DataModelMesh.Offset
Property Vector3 DataModelMesh.Scale
Property Vector3 DataModelMesh.VertexColor
Class BevelMesh : DataModelMesh [notbrowsable] [deprecated]
Class BlockMesh : BevelMesh
Class CylinderMesh : BevelMesh
Class FileMesh : DataModelMesh
Property Content FileMesh.MeshId
Property Content FileMesh.TextureId
Class SpecialMesh : FileMesh
Property MeshType SpecialMesh.MeshType
Class DataStoreService : Instance
Property bool DataStoreService.LegacyNamingScheme [LocalUserSecurity]
Function Instance DataStoreService:GetDataStore(string name, string scope = global)
Function Instance DataStoreService:GetGlobalDataStore()
Function Instance DataStoreService:GetOrderedDataStore(string name, string scope = global)
Class Debris : Instance
Property int Debris.MaxItems [deprecated]
Function void Debris:AddItem(Instance item, double lifetime = 10)
Function void Debris:SetLegacyMaxItems(bool enabled) [LocalUserSecurity]
Function void Debris:addItem(Instance item, double lifetime = 10) [deprecated]
Class DebugSettings : Instance [notbrowsable]
Property int DebugSettings.AltCdnFailureCount [readonly]
Property int DebugSettings.AltCdnSuccessCount [readonly]
Property int DebugSettings.AvailablePhysicalMemory [readonly]
Property int DebugSettings.BlockMeshSize [readonly]
Property string DebugSettings.CPU [readonly]
Property int DebugSettings.CdnFailureCount [readonly]
Property double DebugSettings.CdnResponceTime [readonly]
Property int DebugSettings.CdnSuccessCount [readonly]
Property int DebugSettings.CpuCount [readonly]
Property int DebugSettings.CpuSpeed [readonly]
Property int DebugSettings.DataModel [readonly]
Property double DebugSettings.ElapsedTime [readonly]
Property bool DebugSettings.EnforceInstanceCountLimit
Property ErrorReporting DebugSettings.ErrorReporting
Property string DebugSettings.GfxCard [readonly]
Property int DebugSettings.InstanceCount [readonly]
Property int DebugSettings.InstanceCountLimit
Property bool DebugSettings.IsFmodProfilingEnabled
Property bool DebugSettings.IsProfilingEnabled
Property bool DebugSettings.IsScriptStackTracingEnabled
Property int DebugSettings.JobCount [readonly]
Property double DebugSettings.LastCdnFailureTimeSpan [readonly]
Property int DebugSettings.LuaRamLimit
Property int DebugSettings.NameDatabaseBytes [readonly]
Property int DebugSettings.NameDatabaseSize [readonly]
Property bool DebugSettings.OsIs64Bit [readonly]
Property string DebugSettings.OsPlatform [readonly]
Property int DebugSettings.OsPlatformId [readonly]
Property string DebugSettings.OsVer [readonly]
Property int DebugSettings.PageFaultsPerSecond [readonly]
Property int DebugSettings.PageFileBytes [readonly]
Property float DebugSettings.PixelShaderModel [readonly]
Property int DebugSettings.PlayerCount [readonly]
Property int DebugSettings.PrivateBytes [readonly]
Property int DebugSettings.PrivateWorkingSetBytes [readonly]
Property double DebugSettings.ProcessCores [readonly]
Property int DebugSettings.ProcessorTime [readonly]
Property double DebugSettings.ProfilingWindow
Property int DebugSettings.RAM [readonly]
Property bool DebugSettings.ReportExtendedMachineConfiguration
Property bool DebugSettings.ReportSoundWarnings
Property string DebugSettings.Resolution [readonly]
Property int DebugSettings.RobloxFailureCount [readonly]
Property string DebugSettings.RobloxProductName [readonly]
Property double DebugSettings.RobloxRespoceTime [readonly]
Property int DebugSettings.RobloxSuccessCount [readonly]
Property string DebugSettings.RobloxVersion [readonly]
Property string DebugSettings.SIMD [readonly]
Property string DebugSettings.SystemProductName [readonly]
Property TickCountSampleMethod DebugSettings.TickCountPreciseOverride
Property int DebugSettings.TotalPhysicalMemory [readonly]
Property int DebugSettings.TotalProcessorTime [readonly]
Property float DebugSettings.VertexShaderModel [readonly]
Property int DebugSettings.VideoMemory [readonly]
Property int DebugSettings.VirtualBytes [readonly]
Function void DebugSettings:LegacyScriptMode() [deprecated] [LocalUserSecurity]
Function Tuple DebugSettings:ResetCdnFailureCounts() [LocalUserSecurity]
Function void DebugSettings:SetBlockingRemove(bool value) [LocalUserSecurity]
Class DebuggerBreakpoint : Instance [notCreatable]
Property string DebuggerBreakpoint.Condition
Property bool DebuggerBreakpoint.IsEnabled
Property int DebuggerBreakpoint.Line [readonly]
Class DebuggerManager : Instance [notCreatable]
Property bool DebuggerManager.DebuggingEnabled [readonly]
Function Instance DebuggerManager:AddDebugger(Instance script)
Function void DebuggerManager:EnableDebugging() [LocalUserSecurity]
Function Objects DebuggerManager:GetDebuggers()
Function void DebuggerManager:Resume()
Function void DebuggerManager:StepIn()
Function void DebuggerManager:StepOut()
Function void DebuggerManager:StepOver()
Event DebuggerManager.DebuggerAdded(Instance debugger)
Event DebuggerManager.DebuggerRemoved(Instance debugger)
Class DebuggerWatch : Instance
Property string DebuggerWatch.Expression
Function void DebuggerWatch:CheckSyntax()
Class Dialog : Instance
Property float Dialog.ConversationDistance
Property bool Dialog.InUse
Property string Dialog.InitialPrompt
Property DialogPurpose Dialog.Purpose
Property DialogTone Dialog.Tone
Function void Dialog:SignalDialogChoiceSelected(Instance player, Instance dialogChoice) [RobloxScriptSecurity]
Event Dialog.DialogChoiceSelected(Instance player, Instance dialogChoice)
Class DialogChoice : Instance
Property string DialogChoice.ResponseDialog
Property string DialogChoice.UserDialog
Class DoubleConstrainedValue : Instance
Property double DoubleConstrainedValue.ConstrainedValue [hidden]
Property double DoubleConstrainedValue.MaxValue
Property double DoubleConstrainedValue.MinValue
Property double DoubleConstrainedValue.Value
Event DoubleConstrainedValue.Changed(double value)
Event DoubleConstrainedValue.changed(double value) [deprecated]
Class Dragger : Instance
Function void Dragger:AxisRotate(Axis axis = X)
Function void Dragger:MouseDown(Instance mousePart, Vector3 pointOnMousePart, Objects parts)
Function void Dragger:MouseMove(Ray mouseRay)
Function void Dragger:MouseUp()
Class Explosion : Instance
Property float Explosion.BlastPressure
Property float Explosion.BlastRadius
Property float Explosion.DestroyJointRadiusPercent
Property ExplosionType Explosion.ExplosionType
Property Vector3 Explosion.Position
Event Explosion.Hit(Instance part, float distance)
Class FWService : Instance
Class FaceInstance : Instance [notbrowsable]
Property NormalId FaceInstance.Face
Class Decal : FaceInstance
Property float Decal.Shiny
Property float Decal.Specular
Property Content Decal.Texture
Property float Decal.Transparency
Class Texture : Decal
Property float Texture.StudsPerTileU
Property float Texture.StudsPerTileV
Class Feature : Instance
Property NormalId Feature.FaceId
Property InOut Feature.InOut
Property LeftRight Feature.LeftRight
Property TopBottom Feature.TopBottom
Class Hole : Feature
Class MotorFeature : Feature
Class Fire : Instance
Property Color3 Fire.Color
Property bool Fire.Enabled
Property float Fire.Heat
Property Color3 Fire.SecondaryColor
Property float Fire.Size
Property float Fire.size [deprecated]
Class FlagStandService : Instance
Class ForceField : Instance
Class FriendService : Instance [notCreatable]
Function void FriendService:SetBreakFriendUrl(string url) [LocalUserSecurity]
Function void FriendService:SetCreateFriendRequestUrl(string url) [LocalUserSecurity]
Function void FriendService:SetDeleteFriendRequestUrl(string url) [LocalUserSecurity]
Function void FriendService:SetEnabled(bool enable) [LocalUserSecurity]
Function void FriendService:SetFriendsOnlineUrl(string url) [LocalUserSecurity]
Function void FriendService:SetGetFriendsUrl(string url) [LocalUserSecurity]
Function void FriendService:SetMakeFriendUrl(string url) [LocalUserSecurity]
Class FunctionalTest : Instance [deprecated]
Property string FunctionalTest.Description
Function void FunctionalTest:Error(string message = )
Function void FunctionalTest:Failed(string message = )
Function void FunctionalTest:Pass(string message = )
Function void FunctionalTest:Passed(string message = )
Function void FunctionalTest:Warn(string message = )
Class GamePassService : Instance
Function void GamePassService:SetPlayerHasPassUrl(string playerHasPassUrl) [LocalUserSecurity]
YieldFunction bool GamePassService:PlayerHasPass(Instance player, int gamePassId)
Class GameSettings : Instance [notbrowsable]
Property float GameSettings.BubbleChatLifetime
Property int GameSettings.BubbleChatMaxBubbles
Property int GameSettings.ChatHistory
Property int GameSettings.ChatScrollLength
Property bool GameSettings.CollisionSoundEnabled
Property float GameSettings.CollisionSoundVolume
Property bool GameSettings.HardwareMouse
Property int GameSettings.MaxCollisionSounds
Property int GameSettings.ReportAbuseChatHistory
Property bool GameSettings.SoftwareSound
Property bool GameSettings.SoundEnabled
Property bool GameSettings.VideoCaptureEnabled
Property VideoQualitySettings GameSettings.VideoQuality
Event GameSettings.VideoRecordingChangeRequest(bool recording) [RobloxScriptSecurity]
Class Geometry : Instance
Class GlobalDataStore : Instance
Function Connection GlobalDataStore:OnUpdate(string key, Function callback)
YieldFunction Variant GlobalDataStore:GetAsync(string key)
YieldFunction Variant GlobalDataStore:IncrementAsync(string key, int delta = 1)
YieldFunction void GlobalDataStore:SetAsync(string key, Variant value)
YieldFunction Tuple GlobalDataStore:UpdateAsync(string key, Function transformFunction)
Class OrderedDataStore : GlobalDataStore
YieldFunction Instance OrderedDataStore:GetSortedAsync(bool ascending, int pagesize, Variant minValue, Variant maxValue)
Class GuiBase : Instance
Class GuiBase2d : GuiBase [notbrowsable]
Property Vector2 GuiBase2d.AbsolutePosition [readonly]
Property Vector2 GuiBase2d.AbsoluteSize [readonly]
Class GuiObject : GuiBase2d [notbrowsable]
Property bool GuiObject.Active
Property BrickColor GuiObject.BackgroundColor [deprecated] [hidden]
Property Color3 GuiObject.BackgroundColor3
Property float GuiObject.BackgroundTransparency
Property BrickColor GuiObject.BorderColor [deprecated] [hidden]
Property Color3 GuiObject.BorderColor3
Property int GuiObject.BorderSizePixel
Property bool GuiObject.ClipsDescendants
Property bool GuiObject.Draggable
Property UDim2 GuiObject.Position
Property float GuiObject.Rotation
Property UDim2 GuiObject.Size
Property SizeConstraint GuiObject.SizeConstraint
Property float GuiObject.Transparency [hidden]
Property bool GuiObject.Visible
Property int GuiObject.ZIndex
Function bool GuiObject:TweenPosition(UDim2 endPosition, EasingDirection easingDirection = Out, EasingStyle easingStyle = Quad, float time = 1, bool override = false, Function callback = nil)
Function bool GuiObject:TweenSize(UDim2 endSize, EasingDirection easingDirection = Out, EasingStyle easingStyle = Quad, float time = 1, bool override = false, Function callback = nil)
Function bool GuiObject:TweenSizeAndPosition(UDim2 endSize, UDim2 endPosition, EasingDirection easingDirection = Out, EasingStyle easingStyle = Quad, float time = 1, bool override = false, Function callback = nil)
Event GuiObject.DragBegin(UDim2 initialPosition)
Event GuiObject.DragStopped(int x, int y)
Event GuiObject.InputBegan(Instance input)
Event GuiObject.InputChanged(Instance input)
Event GuiObject.InputEnded(Instance input)
Event GuiObject.MouseEnter(int x, int y)
Event GuiObject.MouseLeave(int x, int y)
Event GuiObject.MouseMoved(int x, int y)
Event GuiObject.MouseWheelBackward(int x, int y)
Event GuiObject.MouseWheelForward(int x, int y)
Event GuiObject.TouchLongPress(Array touchPositions, UserInputState state)
Event GuiObject.TouchPan(Array touchPositions, Vector2 totalTranslation, Vector2 velocity, UserInputState state)
Event GuiObject.TouchPinch(Array touchPositions, float scale, float velocity, UserInputState state)
Event GuiObject.TouchRotate(Array touchPositions, float rotation, float velocity, UserInputState state)
Event GuiObject.TouchSwipe(SwipeDirection swipeDirection, int numberOfTouches)
Event GuiObject.TouchTap(Array touchPositions)
Class Frame : GuiObject
Property FrameStyle Frame.Style
Class NotificationObject : Frame [notbrowsable]
Class GuiButton : GuiObject [notbrowsable]
Property bool GuiButton.AutoButtonColor
Property bool GuiButton.Modal
Property bool GuiButton.Selected
Property ButtonStyle GuiButton.Style
Function void GuiButton:SetVerb(string verb) [RobloxScriptSecurity]
Event GuiButton.MouseButton1Click()
Event GuiButton.MouseButton1Down(int x, int y)
Event GuiButton.MouseButton1Up(int x, int y)
Event GuiButton.MouseButton2Click()
Event GuiButton.MouseButton2Down(int x, int y)
Event GuiButton.MouseButton2Up(int x, int y)
Class ImageButton : GuiButton
Property Content ImageButton.Image
Property Vector2 ImageButton.ImageRectOffset
Property Vector2 ImageButton.ImageRectSize
Property float ImageButton.ImageTransparency
Class TextButton : GuiButton
Property Font TextButton.Font
Property FontSize TextButton.FontSize
Property string TextButton.Text
Property Vector2 TextButton.TextBounds [readonly]
Property BrickColor TextButton.TextColor [deprecated] [hidden]
Property Color3 TextButton.TextColor3
Property bool TextButton.TextFits [readonly]
Property bool TextButton.TextScaled
Property Color3 TextButton.TextStrokeColor3
Property float TextButton.TextStrokeTransparency
Property float TextButton.TextTransparency
Property bool TextButton.TextWrap [deprecated]
Property bool TextButton.TextWrapped
Property TextXAlignment TextButton.TextXAlignment
Property TextYAlignment TextButton.TextYAlignment
Class GuiLabel : GuiObject
Class ImageLabel : GuiLabel
Property Content ImageLabel.Image
Property Vector2 ImageLabel.ImageRectOffset
Property Vector2 ImageLabel.ImageRectSize
Property float ImageLabel.ImageTransparency
Class TextLabel : GuiLabel
Property Font TextLabel.Font
Property FontSize TextLabel.FontSize
Property string TextLabel.Text
Property Vector2 TextLabel.TextBounds [readonly]
Property BrickColor TextLabel.TextColor [deprecated] [hidden]
Property Color3 TextLabel.TextColor3
Property bool TextLabel.TextFits [readonly]
Property bool TextLabel.TextScaled
Property Color3 TextLabel.TextStrokeColor3
Property float TextLabel.TextStrokeTransparency
Property float TextLabel.TextTransparency
Property bool TextLabel.TextWrap [deprecated]
Property bool TextLabel.TextWrapped
Property TextXAlignment TextLabel.TextXAlignment
Property TextYAlignment TextLabel.TextYAlignment
Class NotificationBox : GuiObject [notbrowsable]
Class Scale9Frame : GuiObject
Property Vector2int16 Scale9Frame.ScaleEdgeSize
Property string Scale9Frame.SlicePrefix
Class ScrollingFrame : GuiObject
Property Vector2 ScrollingFrame.AbsoluteWindowSize [readonly]
Property Content ScrollingFrame.BottomImage
Property Vector2 ScrollingFrame.CanvasPosition
Property UDim2 ScrollingFrame.CanvasSize
Property Content ScrollingFrame.MidImage
Property int ScrollingFrame.ScrollBarThickness
Property bool ScrollingFrame.ScrollingEnabled
Property Content ScrollingFrame.TopImage
Class TextBox : GuiObject
Property bool TextBox.ClearTextOnFocus
Property Font TextBox.Font
Property FontSize TextBox.FontSize
Property bool TextBox.MultiLine
Property string TextBox.Text
Property Vector2 TextBox.TextBounds [readonly]
Property BrickColor TextBox.TextColor [deprecated] [hidden]
Property Color3 TextBox.TextColor3
Property bool TextBox.TextFits [readonly]
Property bool TextBox.TextScaled
Property Color3 TextBox.TextStrokeColor3
Property float TextBox.TextStrokeTransparency
Property float TextBox.TextTransparency
Property bool TextBox.TextWrap [deprecated]
Property bool TextBox.TextWrapped
Property TextXAlignment TextBox.TextXAlignment
Property TextYAlignment TextBox.TextYAlignment
Function void TextBox:CaptureFocus()
Event TextBox.FocusLost(bool enterPressed)
Class LayerCollector : GuiBase2d
Class BillboardGui : LayerCollector
Property bool BillboardGui.Active
Property Object BillboardGui.Adornee
Property bool BillboardGui.AlwaysOnTop
Property bool BillboardGui.Enabled
Property Vector3 BillboardGui.ExtentsOffset
Property Object BillboardGui.PlayerToHideFrom
Property UDim2 BillboardGui.Size
Property Vector2 BillboardGui.SizeOffset
Property Vector3 BillboardGui.StudsOffset
Class ScreenGui : LayerCollector
Class GuiMain : ScreenGui [deprecated]
Class SurfaceGui : LayerCollector
Property bool SurfaceGui.Active
Property Object SurfaceGui.Adornee
Property Vector2 SurfaceGui.CanvasSize
Property bool SurfaceGui.Enabled
Property NormalId SurfaceGui.Face
Property float SurfaceGui.ToolPunchThroughDistance
Class GuiBase3d : GuiBase
Property BrickColor GuiBase3d.Color
Property float GuiBase3d.Transparency
Property bool GuiBase3d.Visible
Class FloorWire : GuiBase3d
Property float FloorWire.CycleOffset
Property Object FloorWire.From
Property float FloorWire.StudsBetweenTextures
Property Content FloorWire.Texture
Property Vector2 FloorWire.TextureSize
Property Object FloorWire.To
Property float FloorWire.Velocity
Property float FloorWire.WireRadius
Class PVAdornment : GuiBase3d
Property Object PVAdornment.Adornee
Class SelectionBox : PVAdornment
Class PartAdornment : GuiBase3d
Property Object PartAdornment.Adornee
Class HandlesBase : PartAdornment
Class ArcHandles : HandlesBase
Property Axes ArcHandles.Axes
Event ArcHandles.MouseButton1Down(Axis axis)
Event ArcHandles.MouseButton1Up(Axis axis)
Event ArcHandles.MouseDrag(Axis axis, float relativeAngle, float deltaRadius)
Event ArcHandles.MouseEnter(Axis axis)
Event ArcHandles.MouseLeave(Axis axis)
Class Handles : HandlesBase
Property Faces Handles.Faces
Property HandlesStyle Handles.Style
Event Handles.MouseButton1Down(NormalId face)
Event Handles.MouseButton1Up(NormalId face)
Event Handles.MouseDrag(NormalId face, float distance)
Event Handles.MouseEnter(NormalId face)
Event Handles.MouseLeave(NormalId face)
Class SurfaceSelection : PartAdornment
Property NormalId SurfaceSelection.TargetSurface
Class SelectionLasso : GuiBase3d
Property Object SelectionLasso.Humanoid
Class SelectionPartLasso : SelectionLasso
Property Object SelectionPartLasso.Part
Class SelectionPointLasso : SelectionLasso
Property Vector3 SelectionPointLasso.Point
Class TextureTrail : GuiBase3d
Property float TextureTrail.CycleOffset [RobloxPlaceSecurity]
Property Object TextureTrail.From [RobloxPlaceSecurity]
Property float TextureTrail.StudsBetweenTextures [RobloxPlaceSecurity]
Property Content TextureTrail.Texture [RobloxPlaceSecurity]
Property Vector2 TextureTrail.TextureSize [RobloxPlaceSecurity]
Property Object TextureTrail.To [RobloxPlaceSecurity]
Property float TextureTrail.Velocity [RobloxPlaceSecurity]
Class GuiItem : Instance
Class Backpack : GuiItem
Class BackpackItem : GuiItem
Property Content BackpackItem.TextureId
Class HopperBin : BackpackItem
Property bool HopperBin.Active
Property BinType HopperBin.BinType
Function void HopperBin:Disable() [RobloxScriptSecurity]
Function void HopperBin:ToggleSelect() [RobloxScriptSecurity]
Event HopperBin.Deselected()
Event HopperBin.Selected(Instance mouse)
Class Tool : BackpackItem
Property bool Tool.CanBeDropped
Property bool Tool.Enabled
Property CoordinateFrame Tool.Grip
Property Vector3 Tool.GripForward
Property Vector3 Tool.GripPos
Property Vector3 Tool.GripRight
Property Vector3 Tool.GripUp
Property string Tool.ToolTip
Event Tool.Activated()
Event Tool.Deactivated()
Event Tool.Equipped(Instance mouse)
Event Tool.Unequipped()
Class Flag : Tool
Property BrickColor Flag.TeamColor
Class ButtonBindingWidget : GuiItem
Class GuiRoot : GuiItem [notCreatable]
Class Hopper : GuiItem [deprecated]
Class LocalBackpack : GuiItem [notCreatable]
Function bool LocalBackpack:GetOldSchoolBackpack() [RobloxScriptSecurity]
Function void LocalBackpack:SetOldSchoolBackpack(bool show) [RobloxScriptSecurity]
Class PlayerHUD : GuiItem
Class StarterPack : GuiItem
Class GuiService : Instance [notCreatable]
Property bool GuiService.IsModalDialog [readonly]
Property bool GuiService.IsWindows [readonly]
Property bool GuiService.ShowLegacyPlayerList [RobloxScriptSecurity]
Property bool GuiService.UseLuaChat [readonly]
Property double GuiService.Version [readonly]
Function void GuiService:AddCenterDialog(Instance dialog, CenterDialogType centerDialogType, Function showFunction, Function hideFunction) [RobloxScriptSecurity]
Function void GuiService:AddKey(string key) [RobloxScriptSecurity]
Function void GuiService:AddSpecialKey(SpecialKey key) [RobloxScriptSecurity]
Function int GuiService:GetBrickCount() [RobloxScriptSecurity]
Function int GuiService:GetConnectorCount() [RobloxScriptSecurity]
Function string GuiService:GetErrorMessage() [RobloxScriptSecurity]
Function int GuiService:GetInstanceCount() [RobloxScriptSecurity]
Function int GuiService:GetVoxelCount() [RobloxScriptSecurity]
Function void GuiService:OpenBrowserWindow(string url) [RobloxScriptSecurity]
Function void GuiService:RemoveCenterDialog(Instance dialog) [RobloxScriptSecurity]
Function void GuiService:RemoveKey(string key) [RobloxScriptSecurity]
Function void GuiService:SendNotification(string title, string text, string image, int duration, Function callback) [RobloxScriptSecurity]
Function void GuiService:SetErrorMessage(string errorMessage) [LocalUserSecurity]
Function void GuiService:SetGlobalGuiInset(int x1, int y1, int x2, int y2) [RobloxScriptSecurity]
YieldFunction Vector2 GuiService:GetScreenResolution() [RobloxScriptSecurity]
Event GuiService.BrowserWindowClosed() [RobloxScriptSecurity]
Event GuiService.ErrorMessageChanged(string newErrorMessage) [RobloxScriptSecurity]
Event GuiService.EscapeKeyPressed() [RobloxScriptSecurity]
Event GuiService.KeyPressed(string key, string modifiers) [RobloxScriptSecurity]
Event GuiService.SpecialKeyPressed(SpecialKey key, string modifiers) [RobloxScriptSecurity]
Class GuidRegistryService : Instance
Class HttpService : Instance [notCreatable]
Property bool HttpService.HttpEnabled [LocalUserSecurity]
Function string HttpService:GenerateGUID()
Function Variant HttpService:JSONDecode(string input)
Function string HttpService:JSONEncode(Variant input)
Function string HttpService:UrlEncode(string input)
YieldFunction string HttpService:GetAsync(string url, bool nocache = false)
YieldFunction string HttpService:PostAsync(string url, string data, HttpContentType content_type = ApplicationJson)
Class Humanoid : Instance
Property bool Humanoid.AutoRotate
Property Vector3 Humanoid.CameraOffset
Property float Humanoid.Health
Property bool Humanoid.Jump
Property Object Humanoid.LeftLeg
Property float Humanoid.MaxHealth
Property NameOcclusion Humanoid.NameOcclusion
Property bool Humanoid.PlatformStand
Property Object Humanoid.RightLeg
Property bool Humanoid.Sit
Property Vector3 Humanoid.TargetPoint
Property Object Humanoid.Torso
Property float Humanoid.WalkSpeed
Property Object Humanoid.WalkToPart
Property Vector3 Humanoid.WalkToPoint
Property float Humanoid.maxHealth [deprecated]
Function bool Humanoid:AddCustomStatus(string status)
Function bool Humanoid:AddStatus(Status status = Poison)
Function void Humanoid:ChangeState(HumanoidStateType state = None)
Function void Humanoid:EquipTool(Instance tool)
Function HumanoidStateType Humanoid:GetState()
Function Array Humanoid:GetStatuses()
Function bool Humanoid:HasCustomStatus(string status)
Function bool Humanoid:HasStatus(Status status = Poison)
Function Instance Humanoid:LoadAnimation(Instance animation)
Function void Humanoid:MoveTo(Vector3 location, Instance part = nil)
Function bool Humanoid:RemoveCustomStatus(string status)
Function bool Humanoid:RemoveStatus(Status status = Poison)
Function void Humanoid:SetClickToWalkEnabled(bool enabled) [RobloxScriptSecurity]
Function void Humanoid:TakeDamage(float amount)
Function void Humanoid:UnequipTools()
Function Instance Humanoid:loadAnimation(Instance animation) [deprecated]
Function void Humanoid:takeDamage(float amount) [deprecated]
Event Humanoid.Climbing(float speed)
Event Humanoid.CustomStatusAdded(string status)
Event Humanoid.CustomStatusRemoved(string status)
Event Humanoid.Died()
Event Humanoid.FallingDown(bool active)
Event Humanoid.FreeFalling(bool active)
Event Humanoid.GettingUp(bool active)
Event Humanoid.HealthChanged(float health)
Event Humanoid.Jumping(bool active)
Event Humanoid.PlatformStanding(bool active)
Event Humanoid.Ragdoll(bool active)
Event Humanoid.Running(float speed)
Event Humanoid.Seated(bool active)
Event Humanoid.StateChanged(HumanoidStateType old, HumanoidStateType new)
Event Humanoid.StatusAdded(Status status)
Event Humanoid.StatusRemoved(Status status)
Event Humanoid.Strafing(bool active)
Event Humanoid.Swimming(float speed)
Class InputObject : Instance
Property Vector3 InputObject.Delta
Property KeyCode InputObject.KeyCode
Property Vector3 InputObject.Position
Property UserInputState InputObject.UserInputState
Property UserInputType InputObject.UserInputType
Class InsertService : Instance [notCreatable]
Function void InsertService:ApproveAssetId(int assetId) [deprecated]
Function void InsertService:ApproveAssetVersionId(int assetVersionId) [deprecated]
Function void InsertService:Insert(Instance instance)
Function void InsertService:SetAdvancedResults(bool enable, bool user = false) [LocalUserSecurity]
Function void InsertService:SetAssetUrl(string assetUrl) [LocalUserSecurity]
Function void InsertService:SetAssetVersionUrl(string assetVersionUrl) [LocalUserSecurity]
Function void InsertService:SetBaseCategoryUrl(string baseSetsUrl) [LocalUserSecurity]
Function void InsertService:SetBaseSetsUrl(string baseSetsUrl) [LocalUserSecurity]
Function void InsertService:SetCollectionUrl(string collectionUrl) [LocalUserSecurity]
Function void InsertService:SetFreeDecalUrl(string freeDecalUrl) [LocalUserSecurity]
Function void InsertService:SetFreeModelUrl(string freeModelUrl) [LocalUserSecurity]
Function void InsertService:SetTrustLevel(float trustLevel) [LocalUserSecurity]
Function void InsertService:SetUserCategoryUrl(string userSetsUrl) [LocalUserSecurity]
Function void InsertService:SetUserSetsUrl(string userSetsUrl) [LocalUserSecurity]
YieldFunction Array InsertService:GetBaseCategories() [deprecated]
YieldFunction Array InsertService:GetBaseSets()
YieldFunction Array InsertService:GetCollection(int categoryId)
YieldFunction Array InsertService:GetFreeDecals(string searchText, int pageNum)
YieldFunction Array InsertService:GetFreeModels(string searchText, int pageNum)
YieldFunction Array InsertService:GetUserCategories(int userId) [deprecated]
YieldFunction Array InsertService:GetUserSets(int userId)
YieldFunction Instance InsertService:LoadAsset(int assetId)
YieldFunction Instance InsertService:LoadAssetVersion(int assetVersionId)
YieldFunction Instance InsertService:loadAsset(int assetId) [deprecated]
Class InstancePacketCache : Instance
Class IntConstrainedValue : Instance
Property int IntConstrainedValue.ConstrainedValue [hidden]
Property int IntConstrainedValue.MaxValue
Property int IntConstrainedValue.MinValue
Property int IntConstrainedValue.Value
Event IntConstrainedValue.Changed(int value)
Event IntConstrainedValue.changed(int value) [deprecated]
Class IntValue : Instance
Property int IntValue.Value
Event IntValue.Changed(int value)
Event IntValue.changed(int value) [deprecated]
Class JointInstance : Instance
Property CoordinateFrame JointInstance.C0
Property CoordinateFrame JointInstance.C1
Property Object JointInstance.Part0
Property Object JointInstance.Part1
Property Object JointInstance.part1 [deprecated] [hidden]
Class DynamicRotate : JointInstance
Property float DynamicRotate.BaseAngle
Class RotateP : DynamicRotate
Class RotateV : DynamicRotate
Class Glue : JointInstance
Property Vector3 Glue.F0
Property Vector3 Glue.F1
Property Vector3 Glue.F2
Property Vector3 Glue.F3
Class ManualSurfaceJointInstance : JointInstance
Class ManualGlue : ManualSurfaceJointInstance
Class ManualWeld : ManualSurfaceJointInstance
Class Motor : JointInstance
Property float Motor.CurrentAngle
Property float Motor.DesiredAngle
Property float Motor.MaxVelocity
Function void Motor:SetDesiredAngle(float value)
Class Motor6D : Motor
Class Rotate : JointInstance
Class Snap : JointInstance
Class VelocityMotor : JointInstance
Property float VelocityMotor.CurrentAngle
Property float VelocityMotor.DesiredAngle
Property Object VelocityMotor.Hole
Property float VelocityMotor.MaxVelocity
Class Weld : JointInstance
Class JointsService : Instance [notCreatable]
Function void JointsService:ClearJoinAfterMoveJoints()
Function void JointsService:CreateJoinAfterMoveJoints()
Function void JointsService:SetJoinAfterMoveInstance(Instance joinInstance)
Function void JointsService:SetJoinAfterMoveTarget(Instance joinTarget)
Function void JointsService:ShowPermissibleJoints()
Class Keyframe : Instance
Property float Keyframe.Time
Function void Keyframe:AddPose(Instance pose)
Function Objects Keyframe:GetPoses()
Function void Keyframe:RemovePose(Instance pose)
Class KeyframeSequence : Instance
Property bool KeyframeSequence.Loop
Property AnimationPriority KeyframeSequence.Priority
Function void KeyframeSequence:AddKeyframe(Instance keyframe)
Function Objects KeyframeSequence:GetKeyframes()
Function void KeyframeSequence:RemoveKeyframe(Instance keyframe)
Class KeyframeSequenceProvider : Instance
Function Instance KeyframeSequenceProvider:GetKeyframeSequence(Content assetId)
Function Instance KeyframeSequenceProvider:GetKeyframeSequenceById(int assetId, bool useCache)
Function Content KeyframeSequenceProvider:RegisterActiveKeyframeSequence(Instance keyframeSequence)
Function Content KeyframeSequenceProvider:RegisterKeyframeSequence(Instance keyframeSequence)
YieldFunction Dictionary KeyframeSequenceProvider:GetAnimations(int userId, int page = 1)
Class Light : Instance
Property float Light.Brightness
Property Color3 Light.Color
Property bool Light.Enabled
Property bool Light.Shadows
Class PointLight : Light
Property float PointLight.Range
Class SpotLight : Light
Property float SpotLight.Angle
Property NormalId SpotLight.Face
Property float SpotLight.Range
Class Lighting : Instance [notCreatable]
Property Color3 Lighting.Ambient
Property float Lighting.Brightness
Property Color3 Lighting.ColorShift_Bottom
Property Color3 Lighting.ColorShift_Top
Property Color3 Lighting.FogColor
Property float Lighting.FogEnd
Property float Lighting.FogStart
Property float Lighting.GeographicLatitude
Property bool Lighting.GlobalShadows
Property Color3 Lighting.OutdoorAmbient
Property bool Lighting.Outlines
Property Color3 Lighting.ShadowColor
Property string Lighting.TimeOfDay
Function double Lighting:GetMinutesAfterMidnight()
Function Vector3 Lighting:GetMoonDirection()
Function float Lighting:GetMoonPhase()
Function Vector3 Lighting:GetSunDirection()
Function void Lighting:SetMinutesAfterMidnight(double minutes)
Function double Lighting:getMinutesAfterMidnight() [deprecated]
Function void Lighting:setMinutesAfterMidnight(double minutes) [deprecated]
Event Lighting.LightingChanged(bool skyboxChanged)
Class LocalWorkspace : Instance [notCreatable]
Class LogService : Instance
Function Array LogService:GetLogHistory()
Function void LogService:RequestServerOutput() [RobloxScriptSecurity]
Event LogService.MessageOut(string message, MessageType messageType)
Event LogService.ServerMessageOut(string message, MessageType messageType, int timestamp) [RobloxScriptSecurity]
Class LoginService : Instance
Function void LoginService:Logout() [RobloxSecurity]
Function void LoginService:PromptLogin() [RobloxSecurity]
Event LoginService.LoginFailed(string loginError) [RobloxSecurity]
Event LoginService.LoginSucceeded(string username) [RobloxSecurity]
Class LuaSettings : Instance
Property bool LuaSettings.AreScriptStartsReported
Property double LuaSettings.DefaultWaitTime
Property int LuaSettings.GcFrequency
Property int LuaSettings.GcLimit
Property int LuaSettings.GcPause
Property int LuaSettings.GcStepMul
Property float LuaSettings.WaitingThreadsBudget
Class LuaWebService : Instance
Class MarketplaceService : Instance
Function void MarketplaceService:PromptNativePurchase(Instance player, string productId) [RobloxScriptSecurity]
Function void MarketplaceService:PromptProductPurchase(Instance player, int productId, bool equipIfPurchased = true, CurrencyType currencyType = Default)
Function void MarketplaceService:PromptPurchase(Instance player, int assetId, bool equipIfPurchased = true, CurrencyType currencyType = Default)
Function void MarketplaceService:PromptThirdPartyPurchase(Instance player, string productId) [RobloxPlaceSecurity]
Function void MarketplaceService:SignalClientPurchaseSuccess(string ticket, int playerId, int productId) [RobloxScriptSecurity]
Function void MarketplaceService:SignalPromptProductPurchaseFinished(int userId, int productId, bool success) [RobloxScriptSecurity]
Function void MarketplaceService:SignalPromptPurchaseFinished(Instance player, int assetId, bool success) [RobloxScriptSecurity]
Function void MarketplaceService:SignalServerLuaDialogClosed(bool value) [RobloxScriptSecurity]
YieldFunction Instance MarketplaceService:GetDeveloperProductsAsync()
YieldFunction Dictionary MarketplaceService:GetProductInfo(int assetId, InfoType infoType = Asset)
YieldFunction bool MarketplaceService:PlayerOwnsAsset(Instance player, int assetId)
Event MarketplaceService.ClientLuaDialogRequested(Tuple arguments) [RobloxScriptSecurity]
Event MarketplaceService.ClientPurchaseSuccess(string ticket, int playerId, int productId) [RobloxScriptSecurity]
Event MarketplaceService.NativePurchaseFinished(Instance player, string productId, bool wasPurchased) [RobloxScriptSecurity]
Event MarketplaceService.PromptProductPurchaseFinished(int userId, int productId, bool isPurchased) [deprecated]
Event MarketplaceService.PromptProductPurchaseRequested(Instance player, int productId, bool equipIfPurchased, CurrencyType currencyType) [RobloxScriptSecurity]
Event MarketplaceService.PromptPurchaseFinished(Instance player, int assetId, bool isPurchased)
Event MarketplaceService.PromptPurchaseRequested(Instance player, int assetId, bool equipIfPurchased, CurrencyType currencyType) [RobloxScriptSecurity]
Event MarketplaceService.ServerPurchaseVerification(Dictionary serverResponseTable) [RobloxScriptSecurity]
Event MarketplaceService.ThirdPartyPurchaseFinished(Instance player, string productId, string receipt, bool wasPurchased) [RobloxPlaceSecurity]
Callback ProductPurchaseDecision MarketplaceService.ProcessReceipt(Dictionary receiptInfo)
Class Message : Instance
Property string Message.Text
Class Hint : Message [deprecated]
Class ModuleScript : Instance